-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
49 lines (48 loc) · 1.37 KB
/
Copy pathtailwind.config.js
File metadata and controls
49 lines (48 loc) · 1.37 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
colors: {
'dark': '#171A29',
'black': '#000000',
'white': '#ffffff',
'green': '#10C939',
'active': '#E4EFFF',
'primary': '#246CD9',
'red-deep': '#b91c1c',
'red-light': '#fecaca',
'border-step': '#E2E5EA',
'border-check': '#D2D5DB',
'border-divide': '#E4E8EF',
'border-content': '#E1E4EA',
'gray-btn': '#DCE1E8',
'gray-body': '#F5F5F5',
'gray-number': '#989898',
'gray-content': '#EEF0F3',
'gray-placeholder': '#9A9A9A',
},
fontFamily: {
'inter': ['Inter', 'sans-serif'],
'icons': ['Material Icons'],
},
extend: {
padding: { '105px': '105px', },
maxWidth: { '700px': '700px', },
inset: { '10px': '10px', },
height: { '50px': '50px', },
rotate: { '18deg': '18deg', },
fontSize: {
'0px': '0px',
'35px': '35px',
},
borderRadius: {
'20px': '20px',
'10px': '10px',
'5px': '5px',
},
},
},
plugins: [],
}