-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
93 lines (93 loc) · 2.22 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
container: {
center: true,
padding: '16px',
},
fontFamily: {
heading: ['Poppins', 'sans-serif'],
},
extend: {
colors: {
black: '#212b36',
dark: '#212f4f',
'dark-700': '#090e34b3',
secondary: '#292930',
'body-color': '#000000',
warning: '#FBBF24',
light: '#f3f4fe',
accent: {
50: '#eef2ff',
100: '#e0e7ff',
200: '#c7d2fe',
300: '#a5b4fc',
400: '#818cf8',
500: '#6366f1',
600: '#4f46e5',
700: '#4338ca',
800: '#3730a3',
900: '#312e81',
},
red: {
50: '#ffeff0',
100: '#fedfe1',
200: '#fdbfc3',
300: '#fda0a4',
400: '#fc8086',
500: '#fb6068',
600: '#d3434a',
700: '#aa3137',
800: '#8b2329',
900: '#621e22',
},
blue: {
50: '#edeff5',
100: '#dae0eb',
200: '#b6c1d7',
300: '#91a1c4',
400: '#6d82b0',
500: '#48639c',
600: '#324c85',
700: '#263963',
800: '#212f4f',
900: '#1d283e',
},
green: {
50: '#ecf6f2',
100: '#d8ede6',
200: '#b2dacc',
300: '#8bc8b3',
400: '#65b599',
500: '#3ea380',
600: '#328266',
700: '#26644f',
800: '#1c4a3a',
900: '#123126',
},
primary: {
DEFAULT: '#FFDC5F',
50: '#FFFFFF',
100: '#fdf8f1',
200: '#FFF7D9',
300: '#FFEEB1',
400: '#FFE588',
500: '#FFDC5F',
600: '#FFD027',
700: '#EEBA00',
800: '#B68E00',
900: '#7E6200',
},
},
boxShadow: {
input: '0px 7px 20px rgba(0, 0, 0, 0.03)',
pricing: '0px 39px 23px -27px rgba(0, 0, 0, 0.04)',
'switch-1': '0px 0px 5px rgba(0, 0, 0, 0.15)',
testimonial: '0px 60px 120px -20px #EBEFFD',
},
},
},
plugins: [],
corePlugins: { preflight: false },
darkMode: ['class', '[data-theme="dark"]'],
};