-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
41 lines (41 loc) · 1.19 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef
module.exports = {
important: true,
content: ["./src/**/*.tsx", "./index.html"],
theme: {
extend: {
colors: {
primary: "#635FC7",
secondary: "#2B2C37",
border: "#3E3F4E",
bg: "#20212c",
"alt-text": "rgb(130, 143, 163)",
danger: "rgb(234, 85, 85)",
},
transitionDuration: {
DEFAULT: "300ms",
},
keyframes: {
"fade-in": {
from: { opacity: "0" },
to: { opacity: "1" },
},
loading: {
to: {
opacity: "0.2",
transform: "translateY(50px)",
},
},
},
animation: {
"fade-in": "fade-in 300ms forwards",
loading: "loading 1s infinite alternate",
},
fontFamily: {
sans: ["'Plus Jakarta Sans Variable'", "sans-serif"],
},
},
},
plugins: [],
};