-
Notifications
You must be signed in to change notification settings - Fork 17
/
tailwind.config.js
51 lines (51 loc) · 1.33 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
module.exports = {
content: ["./app/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
metropolis: [
"Metropolis",
"-apple-system",
"Segoe UI",
"Helvetica Neue",
"Helvetica",
"Roboto",
"Arial",
"sans-serif",
"system-ui",
"Apple Color Emoji",
"Segoe UI Emoji",
],
},
colors: {
darker: "hsl(235, 19%, 12%)",
dark: "hsl(240, 15%, 17%)",
faded: "hsl(240,14%,28%)",
lighter: "hsl(0, 0%, 100%)",
light: "hsl(0, 0%, 64%)",
inverse: "hsl(235, 19%, 12%)",
"primary-darker": "hsl(240,100%,17%)",
primary: "hsl(240, 67%, 64%)",
"primary-lighter": "hsl(240, 25%, 64%)",
"danger-darker": "hsl(345,96%,19%)",
danger: "hsl(345, 86%, 56%)",
"danger-lighter": "hsl(345, 86%, 80%)",
},
keyframes: {
"scale-in": {
"0%": { opacity: 0, transform: "scaleX(0.5)" },
"100%": { opacity: 1, transform: "scaleX(1)" },
},
enter: {
"0%": { opacity: 0 },
"100%": { opacity: 1 },
},
},
animation: {
"scale-in": "scale-in 0.1s ease-in-out forwards",
enter: "enter 0.2s ease-in-out forwards",
},
},
},
plugins: [],
};