-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
97 lines (96 loc) · 3.13 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import daisyui from "daisyui";
export default {
plugins: [daisyui],
daisyui: { themes: [], logs: false },
content: ["./**/*.tsx"],
theme: {
container: { center: true },
extend: {
keyframes: {
sliding: {
"0%": { left: 0 },
"100%": { transform: "translateX(-50%)" },
},
slidingFast: {
"0%": { transform: "translateX(0)" },
"100%": { transform: "translateX(-100%)" },
},
"fade-in": {
"0%": { opacity: 0 },
"100%": { opacity: 1 },
},
"pop-up": {
"0%": { transform: "scale(50%)", opacity: 0 },
"100%": { transform: "scale(100%)", opacity: 1 },
},
"fade-up": {
"0%": { transform: "translateY(100%)", opacity: 0 },
"100%": { transform: "translateY(0%)", opacity: 1 },
},
"fade-down": {
"0%": { transform: "translateY(-100%)", opacity: 0 },
"100%": { transform: "translateY(0%)", opacity: 1 },
},
"fade-right": {
"0%": { transform: "translateX(-100%)", opacity: 0 },
"100%": { transform: "translateX(0%)", opacity: 1 },
},
"fade-left": {
"0%": { transform: "translateX(100%)", opacity: 0 },
"100%": { transform: "translateX(0%)", opacity: 1 },
},
"fade-up50": {
"0%": { transform: "translateY(50%)", opacity: 0 },
"100%": { transform: "translateY(0%)", opacity: 1 },
},
"fade-down50": {
"0%": { transform: "translateY(-50%)", opacity: 0 },
"100%": { transform: "translateY(0%)", opacity: 1 },
},
"progress": {
"0%": { width: 0 },
"100%": { width: "100%" },
},
"blink": {
"0%": { opacity: 0 },
"50%": { opacity: 1 },
"100%": { opacity: 0 },
},
},
boxShadow: {
"tinyspread": "0px 0px 10px rgba(204, 204, 204, 0.4)",
"spreaded": "0px 5.563px 31.72px 0px rgba(0, 72, 82, 0.09)",
"spreaded2": "0px 4px 44px 0px rgba(0, 0, 0, 0.13)",
"spreaded3": "11px 4px 44px 0px rgba(29, 26, 26, 0.15)",
"spreaded4": "0px 4px 24px 0px rgba(0, 0, 0, 0.06)",
},
animation: {
sliding: "sliding 30s linear infinite",
slidingFast: "slidingFast 20s linear infinite",
"fade-in": "fade-in 2s ease-in-out",
"pop-up": "pop-up 1s ease-in-out",
"fade-up": "fade-up 1s ease-in-out",
"fade-down": "fade-down 1s ease-in-out",
"fade-right": "fade-right 1s ease-in-out",
"fade-left": "fade-left 1s ease-in-out",
"fade-up50": "fade-up50 1.5s ease-in-out",
"fade-down50": "fade-down50 1.5s ease-in-out",
"progress": "progress 3s linear",
"blink": " blink 0.5s linear infinite",
},
fontFamily: {
instrument: ["Instrument Serif", "sans-serif"],
roboto: ["Roboto", "sans-serif"],
},
screens: {
"min-1180": "1180px",
"sm": "640px",
"md": "768px",
"lg": "1024px",
"xl": "1280px",
"2xl": "1536px",
"s1800": "1800px",
},
},
},
};