-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
79 lines (78 loc) · 1.71 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
danger: {
DEFAULT: '#dc2626',
hover: '#b91c1c',
ring: '#f87171'
},
success: {
DEFAULT: '#22c55e',
hover: '#16a34a',
ring: '#4ade80'
},
warning: {
DEFAULT: '#facc15',
hover: '#eab308',
ring: '#fde047'
},
light: {
gray: '#d1d5db',
main: '#f8f8f8',
sub: '#ffffff',
point: {
DEFAULT: '#60d4de',
hover: '#3fb7c1',
ring: '#70e3ed'
}
},
dark: {
gray: '#9ca3af',
main: '#1f2544',
sub: '#121837',
point: {
DEFAULT: '#f9bd7d',
hover: '#f0aa60',
ring: '#ffc588'
}
},
gold: '#FBBF24',
silver: '#9ca3af',
bronze: '#854d0e',
disabled: '#93a3af',
confirm: '#10B981',
info: '#F9BD7D'
},
fontFamily: {
'IMHyemin-bold': ['IM_Hyemin-Bold'],
'IMHyemin-regular': ['IM_Hyemin-Regular']
},
boxShadow: {
nav: '0px -1px 4px 0px rgba(0, 0, 0, 0.25)',
bottom: '0px 1px 0px 0px #d1d5db'
},
borderWidth: {
DEFAULT: '1px',
0: '0',
1: '1px',
2: '2px',
3: '3px',
4: '4px',
5: '5px',
6: '6px',
7: '7px',
8: '8px'
},
zIndex: {
navbar: '50',
bottomSheet: '100',
toast: '110',
pwaInstallBanner: '120'
}
}
}
};