-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
62 lines (59 loc) · 1.47 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
const spacing = () => {
// spacing in px
const spacing = {};
for (let i = 0; i <= 100; i++) {
spacing[`${i}`] = `${i}px`;
}
return spacing;
};
module.exports = {
mode: "jit",
content: ["./public/**/*.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
spacing: spacing(),
// screens: {
// xs: "320px",
// sm: "375px",
// md: "450px",
// lg: "768px",
// },
extend: {
backdropBlur: {
sheet: "107px"
}
},
colors: {
transparent: "transparent",
current: "currentColor",
red: "#F86C6C",
yellow: "#FFB645",
green: "#ABED94",
primary: "#ec8253",
white: "#ffffff",
black: "#070708",
skeleton: "#28282C",
overlay: "rgba(7, 7, 8, 0.65)",
// "black-7": "rgba(42, 42, 46, 0.7)",
"black-8": "rgba(42, 42, 46, 0.8)",
card: "#17171A",
input: "#1D1D1E",
"white-1": "rgba(255,255,255,0.1)",
"white-2": "rgba(255,255,255,0.2)",
// "white-3": "rgba(255,255,255,0.3)",
"white-04": "rgba(255,255,255,0.04)",
"white-5": "rgba(255,255,255,0.5)",
"white-6": "rgba(255,255,255,0.6)"
// "white-8": "rgba(255,255,255,0.8)",
}
},
plugins: [],
// these options allow to inspect color in dev tool instead of seeing tw-variable
corePlugins: {
textOpacity: false,
backgroundOpacity: false,
borderOpacity: false,
divideOpacity: false,
placeHolderOpacity: false,
ringOpacity: false
}
};