-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
227 lines (219 loc) · 7.03 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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
const vignetteZIndex = 10;
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./data/**/*.{mdx, md}",
],
theme: {
colors: {
transparent: "transparent",
current: "currentColor",
// Stolen from rauno for now
gray: {
"00": "var(--gray-00)",
"01": "var(--gray-01)",
"02": "var(--gray-02)",
"03": "var(--gray-03)",
"04": "var(--gray-04)",
"05": "var(--gray-05)",
"06": "var(--gray-06)",
"07": "var(--gray-07)",
"08": "var(--gray-08)",
"09": "var(--gray-09)",
10: "var(--gray-10)",
11: "var(--gray-11)",
12: "var(--gray-12)",
A01: "var(--gray-A01)",
A02: "var(--gray-A02)",
A03: "var(--gray-A03)",
A04: "var(--gray-A04)",
A05: "var(--gray-A05)",
A06: "var(--gray-A06)",
A07: "var(--gray-A07)",
A08: "var(--gray-A08)",
A09: "var(--gray-A09)",
A10: "var(--gray-A10)",
A11: "var(--gray-A11)",
A12: "var(--gray-A12)",
},
white: "hsl(0 0% 100%)",
},
extend: {
fontFamily: {
serif: ["var(--font-ibm-plex-serif)"],
sans: ["var(--font-ibm-plex-serif)"],
mono: ["var(--font-geist-mono)"],
},
gridTemplateColumns: {
13: "repeat(13, minmax(0, 1fr))",
14: "repeat(14, minmax(0, 1fr))",
15: "repeat(15, minmax(0, 1fr))",
16: "repeat(16, minmax(0, 1fr))",
},
gridColumn: {
"span-13": "span 13 / span 13",
"span-14": "span 14 / span 14",
"span-15": "span 15 / span 15",
"span-16": "span 16 / span 16",
},
gridColumnStart: {
13: "13",
14: "14",
15: "15",
16: "16",
17: "17",
},
gridColumnEnd: {
13: "13",
14: "14",
15: "15",
16: "16",
17: "17",
},
keyframes: {
fadeBlueOut: {
"0%": { backgroundColor: "#0E61FE", transform: "scale(1)"},
"100%": { backgroundColor: "var(--gray-04)" , transform: "scale(0.4)"},
},
fade: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
fadeOut: {
"0%": { opacity: "1" },
"100%": { opacity: "0" },
},
scaleInSlideDown: {
"0%": { opacity: "0", transform: "translateY(-5px) scale(0)" },
"100%": { opacity: "1", transform: "translateY(0) scale(1)" },
},
scaleInSlideUp: {
"0%": { opacity: "0", transform: "translateY(5px) scale(0)" },
"100%": { opacity: "1", transform: "translateY(0) scale(1)" },
},
scaleOutSlideDown: {
"0%": { opacity: "1", transform: "translateY(0) scale(1)" },
"100%": { opacity: "0", transform: "translateY(-5px) scale(0)" },
},
scaleOutSlideUp: {
"0%": { opacity: "1", transform: "translateY(0) scale(1)" },
"100%": { opacity: "0", transform: "translateY(5px) scale(0)" },
},
},
animation: {
fadeBlueOut: "fadeBlueOut 1500ms cubic-bezier(0.2, 0, 0.38, 0.9)",
fade: "fade 550ms cubic-bezier(0, 0, 0.3, 1)",
fadeOut: "fadeOut 550ms cubic-bezier(0, 0, 0.3, 1)",
scaleInSlideDown: "scaleInSlideDown 110ms ease-out",
scaleInSlideUp: "scaleInSlideUp 110ms cubic-bezier(0, 0, 0.38, 0.9)",
scaleOutSlideDown: "scaleOutSlideDown 110ms linear",
scaleOutSlideUp: "scaleOutSlideUp 110ms cubic-bezier(0.2, 0, 1, 0.9)",
},
transitionTimingFunction: {
/**
* See: https://carbondesignsystem.com/guidelines/motion/overview/
*/
"productive-standard": "cubic-bezier(0.2, 0, 0.38, 0.9)",
"productive-entrance": "cubic-bezier(0, 0, 0.38, 0.9)",
"productive-exit": "cubic-bezier(0.2, 0, 1, 0.9)",
"expressive-standard": "cubic-bezier(0.4, 0.14, 0.3, 1)",
"expressive-entrance": "cubic-bezier(0, 0, 0.3, 1)",
"expressive-exit": "cubic-bezier(0.4, 0.14, 1, 1)",
},
transitionDuration: {
/**
* fast-01 - 70ms - Micro-interactions such as button and toggle
*
* fast-02 - 110ms - Micro-interactions such as fade
*
* moderate-01 - 150ms - Micro-interactions, small expansion, short distance movements
*
* moderate-02 - 240ms - Expansion, system communication, toast
*
* slow-01 - 400ms - Large expansion, important system notifications
*
* slow-02 - 700ms - Background dimming
*
* See: https://carbondesignsystem.com/guidelines/motion/overview/
*/
"fast-01": "70ms",
"fast-02": "110ms",
"moderate-01": "150ms",
"moderate-02": "240ms",
"slow-01": "400ms",
"slow-02": "700ms",
},
borderRadius: {
inherit: "inherit",
},
dropShadow: {
input: `
0px 1px 0px -1px var(--tw-shadow-color),
0px 1px 1px -1px var(--tw-shadow-color),
0px 1px 2px -1px var(--tw-shadow-color),
0px 2px 4px -2px var(--tw-shadow-color),
0px 3px 6px -3px var(--tw-shadow-color)
`,
highlight: `
inset 0px 0px 0px 1px var(--tw-shadow-color),
inset 0px 1px 0px var(--tw-shadow-color)
`,
"faux-border": `
inset 0px 0px 0px 1px var(--tw-shadow-color),
`,
},
boxShadow: {
input: `
0px 1px 0px -1px var(--tw-shadow-color),
0px 1px 1px -1px var(--tw-shadow-color),
0px 1px 2px -1px var(--tw-shadow-color),
0px 2px 4px -2px var(--tw-shadow-color),
0px 3px 6px -3px var(--tw-shadow-color)
`,
highlight: `
inset 0px 0px 0px 1px var(--tw-shadow-color),
inset 0px 1px 0px var(--tw-shadow-color)
`,
"faux-border": `
inset 0px 0px 0px 1px var(--tw-shadow-color),
`,
},
zIndex: {
vignette: `${vignetteZIndex}`,
aboveVignette: `${vignetteZIndex + 1}`,
},
},
},
safelist: [
{
pattern: /grid-cols-(1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16)/,
variants: ["lg", "md"],
},
],
plugins: [
require("tailwindcss-radix")(),
require("tailwindcss-animate"),
function ({ addBase, theme }) {
function extractColorVars(colorObj, colorGroup = "") {
return Object.keys(colorObj).reduce((vars, colorKey) => {
const value = colorObj[colorKey];
const cssVariable =
colorKey === "DEFAULT"
? `--color${colorGroup}`
: `--color${colorGroup}-${colorKey}`;
const newVars =
typeof value === "string"
? { [cssVariable]: value }
: extractColorVars(value, `-${colorKey}`);
return { ...vars, ...newVars };
}, {});
}
addBase({
":root": extractColorVars(theme("colors")),
});
},
],
};