-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
67 lines (66 loc) · 1.62 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
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
// const colors = require("tailwindcss/colors");
module.exports = {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {
fontSize: {
xx: "11rem",
tiny: ".65rem",
},
height: {
18: "72px",
},
scale: {
175: "1.75",
200: "2",
},
transitionDuration: {
0: "0ms",
250: "250ms",
},
transformOrigin: {
"top-1/2": "50% 100%",
},
keyframes: {
loading: {
"0%": { width: 0 },
"100%": { width: "100%" },
},
fadeOut: {
"0%": { opacity: 1 },
"100%": { opacity: 0 },
},
fadeIn: {
"0%": { opacity: 0 },
"100%": { opacity: 1 },
},
},
animation: {
loading: "loading 1.5s ease-in-out",
"fade-in": "fadeIn 0.5s",
"fade-out": "fadeOut 0.5s",
},
colors: {
loading: "#424242",
bg: "var(--bg)",
border: "var(--border)",
dropdown: "var(--dropdown)",
divider: "var(--divider)",
accent: "var(--text)",
gray: "var(--text-gray)",
"dropdown-item-hover": "var(--dropdown-item-hover)",
"app-bg": "var(--app-bg)",
"app-transparent": "var(--text-transparent)",
"toggle-active": "#1866df",
"btn-close": "var(--btn-close)",
"btn-min": "var(--btn-min)",
"btn-max": "var(--btn-max)",
},
gridTemplateColumns: {
lg: "repeat(auto-fill, minmax(160px, 1fr))",
sm: "repeat(auto-fill, minmax(130px, 1fr))",
},
},
},
plugins: [],
};