forked from TreyWW/MyFinances
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
111 lines (111 loc) · 3.4 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./frontend/templates/**/*.html',
'./components/**/*.html',
'./frontend/templates/base/base.html', './backend/**/views/*.py',
],
safelist: [
'alert',
'alert-error',
'alert-success',
'alert-info',
'alert-warning',
'mask',
'mask-half-1',
'mask-half-2'
],
plugins: [require("daisyui")],
daisyui: {
themes: [
// "dark",,
{
light: {
"color-scheme": "dark",
"primary": "#8B45BA",
"secondary": "#6a74ec",
"secondary-content": "#c5c5c5",
"error": "#e6949e",
"accent": "#5B62E1",
"neutral": "#2B3440",
"neutral-content": "#D7DDE4",
"base-100": "oklch(100% 0 0)",
"base-200": "#F2F2F2",
"base-300": "#E5E6E6",
"base-content": "#1f2937",
"placeholderColor": "#0051ff",
},
dark:
{
"color-scheme":
"dark",
"primary":
"#9376e1",
"secondary":
"#9498E6",
"error":
"#e6949e",
"success": "#94e6a4",
"success-content": "#2a323c",
"accent":
"#5B62E1",
"neutral":
"#2a323c",
"neutral-content":
"#A6ADBB",
"base-100":
"#2b343d",
"base-200":
"#1D232A",
"base-300":
"#191d25",
"base-content":
"#BFBFBF",
"placeholderColor":
"#0051ff",
}
}
],
darkTheme:
"dark",
},
variants:
{
extend: {
display: ['group-hover'],
}
,
}
,
theme: {
extend: {
animation: {
// 'pulse-slow': 'pulse 4s linear infinite',
}
,
dropShadow: {
glow: [
"0 0px 20px rgba(255,255, 255, 0.35)",
"0 0px 65px rgba(255, 255,255, 0.2)"
],
glow_gold:
[
"0 0px 20px #bf9553",
"0 0px 65px #bf9553"
],
glow_red:
[
"0 0px 20px var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)))",
"0 0px 65px var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)))"
],
glow_gold_small:
[
"0 0px 15px #bf9553",
// "0 0px 80px #bf9553"
]
}
,
// placeholderColor: {'custom': '#0051ff'}
}
}
}