generated from deco-sites/boilerplaten1v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
50 lines (49 loc) · 1.28 KB
/
tailwind.config.ts
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
50
import daisyui from "daisyui";
export default {
plugins: [daisyui],
daisyui: { themes: [], logs: false },
content: ["./**/*.tsx"],
theme: {
container: {
center: true,
},
fontFamily: {
"condensed": ["Asap Condensed", "Arial", "sans-serif"],
},
extend: {
colors: {
"emphasis": "#E93A7D",
"neutral-100": "#EDEDED",
"neutral-200": "#F7F7F7",
},
animation: {
"slide-left": "slide-left-frame 0.4s ease normal",
"slide-right": "slide-right-frame 0.4s ease normal",
"slide-bottom": "slide-bottom-frame 0.4s ease normal",
progress: "progress-frame ease normal",
},
keyframes: {
"slide-left-frame": {
from: { transform: "translateX(100%)" },
to: { transform: "translateX(0)" },
},
"slide-right-frame": {
from: { transform: "translateX(-100%)" },
to: { transform: "translateX(0)" },
},
"slide-bottom-frame": {
from: { transform: "translateY(100%)" },
to: { transform: "translateY(0)" },
},
"progress-frame": {
from: {
"--dot-progress": "0%",
},
to: {
"--dot-progress": "100%",
},
},
},
},
},
};