-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
49 lines (49 loc) · 1.07 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
module.exports = {
future: {
purgeLayersByDefault: true,
removeDeprecatedGapUtilities: true,
},
plugins: [],
purge: ["./components/**/*.{js,ts,jsx,tsx}", "./pages/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
animation: {
shine: "shine 15s ease infinite",
},
backgroundSize: {
"100%": "400% 100%",
},
colors: {
bunker: {
100: "#E8E8E8",
200: "#C5C6C6",
300: "#A3A3A4",
400: "#5D5F5F",
50: "#F3F4F4",
500: "#181A1B",
600: "#161718",
700: "#0E1010",
800: "#0B0C0C",
900: "#070808",
},
},
keyframes: {
shine: {
"0%": {
backgroundPosition: "0% 50%",
},
"100%": {
backgroundPosition: "0% 50%",
},
"50%": {
backgroundPosition: "100% 50%",
},
},
},
},
},
variants: {
animation: ["responsive", "hover", "focus"],
backgroundPosition: ["responsive", "hover", "focus"],
},
};