-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
39 lines (36 loc) · 1.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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "jit",
content: ["./public/index.html", "./src/**/*.{js,jsx,ts,tsx}"],
darkMode: "class",
theme: {
extend: {
colors: {
primary: "#202225",
secondary: "#5865f2",
gray: {
900: "#202225",
800: "#2F3136",
700: "#36393F",
600: "#4F545C",
500: "#595e66",
400: "#d4d7dc",
300: "#e3e5e8",
200: "#ebedef",
100: "#f2f3f5",
},
},
keyframes: {
"wall-anim": {
"0%": { transform: "scale(0)" },
"50%": { transform: "scale(1.2)" },
"100%": { transform: "scale(1)" },
},
},
},
animation: {
wall: "wall-anim 0.4s linear",
},
},
plugins: [],
};