forked from astrocamp/17th-WorkNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
63 lines (63 loc) · 1.35 KB
/
tailwind.config.js
File metadata and controls
63 lines (63 loc) · 1.35 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: false,
content: ["./**/templates/**/*.{html,js}"],
theme: {
data: {
active: 'active~="true"',
disabled: 'disabled~="true"',
},
extend: {
backgroundImage: {
"logo-backend": "url('/static/imgs/logo_backend.png')",
"banner-img": "url('/static/imgs/banner.jpg')",
},
boxShadow: {
"custom-light": "0 3px 5px rgba(0, 0, 0, 0.05)",
},
colors: {
"white-20": "rgba(255, 255, 255, 0.2)",
},
fontFamily: {
sans: ["Noto Sans TC", "sans-serif"],
},
spacing: {
"calc-card": "calc(50% - 14px)",
"calc-data": "calc(50% - 10px)",
},
aspectRatio: {
"8/3": "8 / 3",
"32/5": "32 / 5",
"16/5": "16 / 5",
},
backdropBlur: {
'5': 'blur(5px)',
},
container: {
screens: {
sm: "100%",
md: "100%",
lg: "1024px",
xl: "1280px",
},
},
},
},
variants: {
backdropBlur: ['responsive'],
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
corporate: {
primary: "#00336b",
secondary: "#449dd1",
neutral: "#000000",
error: "#bb342f",
warning: "#ffe347",
},
},
],
},
};