-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
46 lines (46 loc) · 1.07 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
42
43
44
45
46
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx,astro,mdx}"
],
theme: {
extend: {
colors: {
// Using modern `rgb`
bgColor: "var(--bg-color)",
fgColor: "var(--fg-color)",
textColor: "var(--text-color)",
headerColor: "var(--header-color)",
accentColor: 'var(--accent-color) ',
},
fontFamily: {
text: "var(--text-font)",
header: "var(--header-font)"
},
keyframes: {
shimmer: {
"0%, 100%": { filter: "brightness(100%)" },
"85%": { filter: "brightness(100%)" },
"90%": { filter: "brightness(150%)" },
},
lumine: {
"0%": { transform: "translateX(-50%)" },
"100%": { transform: "translateX(-10%)" }
}
},
animation: {
"shimmer": "shimmer 10s ease-out infinite",
"lumine": "lumine 16s linear infinite",
"spin": "spin ease-in-out 1s infinite",
"apparate": "apparate linear 3s 1"
},
dropShadow: {
"colored": "8px 8px 0px var(--fg-color)"
}
}
},
plugins: [
require('tailwind-scrollbar'),
]
}