-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
78 lines (78 loc) · 1.62 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/react-tailwindcss-datepicker/dist/index.esm.js',
],
darkMode: 'class',
theme: {
extend: {
boxShadow: {
topShadow: '0px 0px 100px rgba(92, 92, 92, 0.25)',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
colors: {
primary: '#7C5DFA',
secondary: '#9277FF',
primaryDark: '#1E2139',
secondaryDark: '#252945',
rose: '#DFE3FA',
gray: '#888EB0',
grayPurple: '#7E88C3',
black: '#0C0E16',
red: '#EC5757',
lightRed: '#ff9797',
lightGray: '#F8F8FB',
lightGreen: '#33D69F',
orange: '#FF8F00',
darkGray: '#373b53',
lightDark: '#141625',
grayishWhite: '#e3e3e3',
},
fontSize: {
headingL: [
'2.5rem',
{
fontWeight: 'bold',
lineHeight: '38px',
letterSpacing: '-1px',
},
],
headingM: [
'2rem',
{
fontWeight: 'bold',
lineHeight: '28px',
letterSpacing: '-0.75px',
},
],
headingS: [
'1.5rem',
{
fontWeight: 'bold',
lineHeight: '24px',
letterSpacing: '-0.25px',
},
],
headingSVariant: [
'1.1rem',
{
fontWeight: 'bold',
lineHeight: '15px',
letterSpacing: '-0.25px',
},
],
},
},
},
plugins: [
require('@tailwindcss/forms')({
strategy: 'class',
}),
],
}