-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathtailwind.config.js
72 lines (71 loc) · 1.75 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
68
69
70
71
72
const colors = require("tailwindcss/colors");
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./src/renderer/*.vue", "./src/renderer/components/*.vue", "./src/renderer/views/*.vue"],
darkMode: "class",
safelist: [
"bg-black",
"w-[1rem]",
"h-[1rem]",
"w-20",
"gap-2",
"bg-green-500",
"bg-blue-500",
"bg-purple-500",
"bg-orange-500",
"bg-violet-500",
"bg-red-500",
"border-purple-500",
"border-blue-500",
"border-orange-500",
"border-green-500",
"border-violet-500",
"border-red-500"
],
theme: {
listStyleType: {
none: "none",
square: "square",
roman: "upper-roman"
},
height: {
"fill-available": "-webkit-fill-available"
},
zIndex: {
100: "100",
200: "200",
300: "300"
},
screens: {
xs: "475px",
...defaultTheme.screens
},
extend: {
colors: {
base1: colors.neutral
}
}
},
daisyui: {
themes: [
"light",
"dark",
"retro",
"cyberpunk",
"halloween",
"dracula",
"lemonade",
"winter",
"dim",
{
laravel: {
primary: "#FF2D20",
secondary: "#ff8400",
neutral: "#18181a",
"base-100": "#000000"
}
}
]
},
plugins: [require("postcss-import"), require("daisyui"), require("@tailwindcss/typography")]
};