-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (48 loc) · 1.29 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
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
darkMode: false,
theme: {
extend: {
gridTemplateColumns: {
wordList: "repeat(4, minmax(min-content, 200px))",
},
animation: {
"move-up": "move-up 0.3s ease-in-out",
"move-down": "move-down 0.3s ease-in-out",
"slow-spin": "spin 2.5s ease infinite",
},
keyframes: {
"move-up": {
"0%": { transform: "translateY(10px)", opacity: 0 },
"80%": { transform: "translateY(-2px)", opacity: 0.9 },
"100%": { transform: "translateY(0)", opacity: 1 },
},
"move-down": {
"0%": { transform: "translateY(0)", opacity: 1 },
"80%": { transform: "translateY(2px)", opacity: 0.2 },
"100%": { transform: "translateY(10px)", opacity: 0 },
},
},
fontFamily: {
sans: ['"Overpass Mono"'],
},
colors: {
transparent: "transparent",
current: "currentColor",
black: "#000",
white: "#fff",
gray: "#ABABAB",
lightGray: "#EBE6D9",
lightYellow: "#FDF3E4",
yellow: "#FDDE5E",
darkYellow: "#E2D49B",
},
},
},
variants: {
extend: {
opacity: ["disabled"],
},
},
plugins: [],
};