-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
115 lines (114 loc) · 2.46 KB
/
tailwind.config.cjs
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
fontFamily: {
poppins: ['"Poppins"', ...defaultTheme.fontFamily.sans],
},
colors: {
bodyBg: '#F5F5FA',
customgray: {
1: '#F3F3F3',
2: '#AAAAAA',
},
customblack: {
1: '#111111',
2: '#222222',
3: '#333333',
236: '#22222236',
},
primary: {
1: '#4836E7',
5: '#F7F9FF',
10: '#D0DAFB',
20: '#A0B5F8',
30: '#597DF2',
40: '#2A58EF',
50: '#1246ED',
60: '#0E38BE',
70: '#0D31A6',
80: '#092377',
90: '#051547',
DEFAULT: '#040E2F',
},
secondary: {
5: '#EDFAFA',
10: '#D5F5F6',
20: '#AFECEF',
30: '#7EDCE2',
40: '#16BDCA',
50: '#0694A2',
60: '#047481',
70: '#036672',
80: '#05505C',
90: '#014451',
DEFAULT: '#01333C',
},
neutral: {
5: '#F8FAFC',
10: '#EEF2F7',
20: '#E3EAF2',
30: '#D3DDEA',
40: '#B3C4DB',
50: '#9EB4D1',
60: '#829EC4',
70: '#6789B7',
80: '#4A6D9C',
90: '#2B3F5A',
DEFAULT: '#181B20',
},
critical: {
1: '#D75757',
10: '#FECDCD',
50: '#FB1E1E',
60: '#C80404',
80: '#900303',
},
warning: {
10: '#FFEBCC',
50: '#FD9800',
60: '#CC7A00',
80: '#804D00',
},
success: {
10: '#D3FFCC',
50: '#23FE01',
60: '#1CCB01',
80: '#159A01',
},
info: {
10: '#CCECFF',
50: '#00A2FD',
60: '#0081CC',
80: '#005180',
},
},
spacing: {
144: '36rem',
},
fontSize: {
xxs: '0.625rem',
28: '1.75rem',
32: '2rem',
},
},
container: {
center: true,
padding: '1rem',
screens: {
sm: '600px',
md: '728px',
lg: '984px',
xl: '1352px',
},
},
},
plugins: [],
};