-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
97 lines (96 loc) · 2.02 KB
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
fontFamily: {
'Toss': ['Toss Product Sans'],
'Pret': ['Pretendard'],
'Outfit': ['Outfit']
},
extend: {
colors: {
light: {
text: {
DEFAULT: '#212529',
1: '#CED4DA',
2: '#868E96',
3: '#495057',
},
primary: {
DEFAULT: '#F3F3F3',
1: '#FFFFFF',
},
bg: {
DEFAULT: '#D9D9D9',
},
button: {
DEFAULT: '#4882ED',
low: '#888888',
}
},
light_before: {
text: {
DEFAULT: '#212529',
1: '#CED4DA',
2: '#868E96',
3: '#495057',
},
primary: {
DEFAULT: '#FFFFFF',
1: '#F3F3F3',
},
bg: {
DEFAULT: '#D9D9D9',
},
button: {
DEFAULT: '#4882ED',
}
},
dark: {
text: {
DEFAULT: '#ECECEC',
1: '#D9D9D9',
2: '#ACACAC',
3: '#595959',
},
primary: {
DEFAULT: '#20202C',
1: '#333238',
},
bg: {
DEFAULT: '#18181A',
},
button: {
DEFAULT: '#5F85DB',
low: '#FFFFFF',
}
},
dark_before: {
text: {
DEFAULT: '#ECECEC',
1: '#D9D9D9',
2: '#ACACAC',
3: '#595959',
},
primary: {
DEFAULT: '#18181A',
1: '#2C2C34',
},
bg: {
DEFAULT: '#1f1f1f',
},
button: {
DEFAULT: '#3182F7',
}
},
}
},
},
plugins: [],
darkMode: 'class',
}
export default config