-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
171 lines (160 loc) · 7.51 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./pages/**/*.{js,ts,jsx,tsx}", "./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: ["var(--font-dm-sans)", ...defaultTheme.fontFamily.sans],
},
boxShadow: {
sm: "0px 1px 4px 0px rgba(0, 0, 0, 0.05)",
xl: "0px 15px 35px 0px rgba(46, 46, 46, 0.14)",
button: "0px 0px 0px 4px rgba(229, 243, 237,1)",
},
borderRadius: {
"2.5xl": "1.25rem",
},
lineHeight: {
4.5: "17.5px",
},
},
colors: {
black: "rgb(var(--theme-color-black) / <alpha-value>)",
"subtle-black": "rgb(var(--theme-color-subtle-black) / <alpha-value>)",
"base-black": "rgb(var(--theme-color-base-black) / <alpha-value>)",
white: "rgb(var(--theme-color-white) / <alpha-value>)",
"subtle-white": "rgb(var(--theme-color-subtle-white) / <alpha-value>)",
transparent: "transparent",
// primary
"theme-primary-50": "rgb(var(--theme-color-primary-50) / <alpha-value>)",
"theme-primary-100":
"rgb(var(--theme-color-primary-100) / <alpha-value>)",
"theme-primary-200":
"rgb(var(--theme-color-primary-200) / <alpha-value>)",
"theme-primary-300":
"rgb(var(--theme-color-primary-300) / <alpha-value>)",
"theme-primary-400":
"rgb(var(--theme-color-primary-400) / <alpha-value>)",
"theme-primary-500":
"rgb(var(--theme-color-primary-500) / <alpha-value>)",
"theme-primary-600":
"rgb(var(--theme-color-primary-600) / <alpha-value>)",
"theme-primary-700":
"rgb(var(--theme-color-primary-700) / <alpha-value>)",
"theme-primary-800":
"rgb(var(--theme-color-primary-800) / <alpha-value>)",
"theme-primary-900":
"rgb(var(--theme-color-primary-900) / <alpha-value>)",
// dark-primary
"theme-dark-primary-50":
"rgb(var(--theme-color-dark-primary-50) / <alpha-value>)",
"theme-dark-primary-100":
"rgb(var(--theme-color-dark-primary-100) / <alpha-value>)",
"theme-dark-primary-200":
"rgb(var(--theme-color-dark-primary-200) / <alpha-value>)",
"theme-dark-primary-300":
"rgb(var(--theme-color-dark-primary-300) / <alpha-value>)",
"theme-dark-primary-400":
"rgb(var(--theme-color-dark-primary-400) / <alpha-value>)",
"theme-dark-primary-500":
"rgb(var(--theme-color-dark-primary-500) / <alpha-value>)",
"theme-dark-primary-600":
"rgb(var(--theme-color-dark-primary-600) / <alpha-value>)",
"theme-dark-primary-700":
"rgb(var(--theme-color-dark-primary-700) / <alpha-value>)",
"theme-dark-primary-800":
"rgb(var(--theme-color-dark-primary-800) / <alpha-value>)",
"theme-dark-primary-900":
"rgb(var(--theme-color-dark-primary-900) / <alpha-value>)",
// dark-primary-green
"theme-primary-green-50":
"rgb(var(--theme-color-primary-green-50) / <alpha-value>)",
"theme-primary-green-100":
"rgb(var(--theme-color-primary-green-100) / <alpha-value>)",
"theme-primary-green-200":
"rgb(var(--theme-color-primary-green-200) / <alpha-value>)",
"theme-primary-green-300":
"rgb(var(--theme-color-primary-green-300) / <alpha-value>)",
"theme-primary-green-400":
"rgb(var(--theme-color-primary-green-400) / <alpha-value>)",
"theme-primary-green-500":
"rgb(var(--theme-color-primary-green-500) / <alpha-value>)",
"theme-primary-green-600":
"rgb(var(--theme-color-primary-green-600) / <alpha-value>)",
"theme-primary-green-650":
"rgb(var(--theme-color-primary-green-650) / <alpha-value>)",
"theme-primary-green-700":
"rgb(var(--theme-color-primary-green-700) / <alpha-value>)",
"theme-primary-green-800":
"rgb(var(--theme-color-primary-green-800) / <alpha-value>)",
"theme-primary-green-900":
"rgb(var(--theme-color-primary-green-900) / <alpha-value>)",
// error
"theme-error-25": "rgb(var(--theme-color-error-25) / <alpha-value>)",
"theme-error-50": "rgb(var(--theme-color-error-50) / <alpha-value>)",
"theme-error-100": "rgb(var(--theme-color-error-100) / <alpha-value>)",
"theme-error-200": "rgb(var(--theme-color-error-200) / <alpha-value>)",
"theme-error-300": "rgb(var(--theme-color-error-300) / <alpha-value>)",
"theme-error-400": "rgb(var(--theme-color-error-400) / <alpha-value>)",
"theme-error-500": "rgb(var(--theme-color-error-500) / <alpha-value>)",
"theme-error-600": "rgb(var(--theme-color-error-600) / <alpha-value>)",
"theme-error-700": "rgb(var(--theme-color-error-700) / <alpha-value>)",
"theme-error-800": "rgb(var(--theme-color-error-800) / <alpha-value>)",
"theme-error-900": "rgb(var(--theme-color-error-900) / <alpha-value>)",
// warning
"theme-warning-25": "rgb(var(--theme-color-warning-25) / <alpha-value>)",
"theme-warning-50": "rgb(var(--theme-color-warning-50) / <alpha-value>)",
"theme-warning-100":
"rgb(var(--theme-color-warning-100) / <alpha-value>)",
"theme-warning-200":
"rgb(var(--theme-color-warning-200) / <alpha-value>)",
"theme-warning-300":
"rgb(var(--theme-color-warning-300) / <alpha-value>)",
"theme-warning-400":
"rgb(var(--theme-color-warning-400) / <alpha-value>)",
"theme-warning-500":
"rgb(var(--theme-color-warning-500) / <alpha-value>)",
"theme-warning-600":
"rgb(var(--theme-color-warning-600) / <alpha-value>)",
"theme-warning-700":
"rgb(var(--theme-color-warning-700) / <alpha-value>)",
"theme-warning-800":
"rgb(var(--theme-color-warning-800) / <alpha-value>)",
"theme-warning-900":
"rgb(var(--theme-color-warning-900) / <alpha-value>)",
// success
"theme-success-50": "rgb(var(--theme-color-success-50) / <alpha-value>)",
"theme-success-100":
"rgb(var(--theme-color-success-100) / <alpha-value>)",
"theme-success-200":
"rgb(var(--theme-color-success-200) / <alpha-value>)",
"theme-success-300":
"rgb(var(--theme-color-success-300) / <alpha-value>)",
"theme-success-400":
"rgb(var(--theme-color-success-400) / <alpha-value>)",
"theme-success-500":
"rgb(var(--theme-color-success-500) / <alpha-value>)",
"theme-success-600":
"rgb(var(--theme-color-success-600) / <alpha-value>)",
"theme-success-700":
"rgb(var(--theme-color-success-700) / <alpha-value>)",
"theme-success-800":
"rgb(var(--theme-color-success-800) / <alpha-value>)",
"theme-success-900":
"rgb(var(--theme-color-success-900) / <alpha-value>)",
// gray
"theme-gray-25": "rgb(var(--theme-color-gray-25) / <alpha-value>)",
"theme-gray-50": "rgb(var(--theme-color-gray-50) / <alpha-value>)",
"theme-gray-100": "rgb(var(--theme-color-gray-100) / <alpha-value>)",
"theme-gray-200": "rgb(var(--theme-color-gray-200) / <alpha-value>)",
"theme-gray-300": "rgb(var(--theme-color-gray-300) / <alpha-value>)",
"theme-gray-400": "rgb(var(--theme-color-gray-400) / <alpha-value>)",
"theme-gray-500": "rgb(var(--theme-color-gray-500) / <alpha-value>)",
"theme-gray-600": "rgb(var(--theme-color-gray-600) / <alpha-value>)",
"theme-gray-700": "rgb(var(--theme-color-gray-700) / <alpha-value>)",
"theme-gray-800": "rgb(var(--theme-color-gray-800) / <alpha-value>)",
},
},
};