-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
46 lines (45 loc) · 1000 Bytes
/
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
const colors = require("tailwindcss/colors");
module.exports = {
mode: "jit",
purge: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layouts/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
colors: {
transparent: "transparent",
current: "currentColor",
blue: colors.sky,
gray: colors.trueGray,
grad: {
dark: "#3f3d56",
light: "#fbfaf3",
},
},
zIndex: {
1: 1,
"-1": -1,
},
backgroundImage: {
"gradient-radial":
"radial-gradient(circle at bottom right, var(--tw-gradient-stops))",
},
keyframes: {
subtle: {
"0%, 100%": { "background-size": "100% 100%" },
"50%": { "background-size": "250% 250%" },
},
},
animation: {
subtle: "subtle 20s ease-in-out infinite",
},
},
},
variants: {
extend: {},
},
plugins: [],
};