-
-
Notifications
You must be signed in to change notification settings - Fork 156
/
tailwind.config.js
126 lines (126 loc) · 3.15 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: 'jit',
content: [
'./frontend/templates/**/*.html',
'./billing/templates/**/*.html',
'./components/**/*.html',
'./frontend/templates/base/base.html',
'./backend/**/views/*.py',
'./backend/views/core/**/*.py',
'./assets/scripts/tableify.js'
],
safelist: [
'alert',
'alert-error',
'alert-success',
'alert-info',
'alert-warning',
'mask',
'mask-half-1',
'mask-half-2',
{
pattern: /link-(.*)/
}
],
plugins: [require("daisyui")],
daisyui: {
themes: [
// "dark",,
{
light: {
"color-scheme": "dark",
"primary": "#8620a2",
"primary-content": "#faebf2",
"secondary": "#e983a0",
"secondary-content": "#1a0c1d",
"error": "#f58493",
"accent": "#b7c2be",
"accent-content": "#1a0c1d",
"neutral": "#2B3440",
"neutral-content": "#D7DDE4",
"base-100": "#faf5fa",
"base-200": "#eeeaee",
"base-300": "#d7d4d7",
"base-content": "#1a0c1d",
"placeholderColor": "#0051ff",
},
dark: {
"color-scheme": "dark",
"primary": "#9376e1",
"primary-content": "#1a0f1e",
"secondary": "#4BA3A4",
"secondary-content": "#252929",
"error": "#e6949e",
"success": "#74D98A",
"success-content": "#2a323c",
"info": "#57c7aa",
"accent": "#3d4844",
"accent-content": "#e5d0ed",
"neutral": "#2a323c",
"neutral-content": "#B0B7C3",
"base-100": "#2B2F33",
"base-200": "#21262A",
"base-300": "#15181B",
"base-content": "#f0e2f3",
"placeholderColor": "#7FAFFF",
}
}
],
darkTheme:
"dark",
},
variants:
{
extend: {
display: ['group-hover'],
}
,
}
,
theme: {
extend: {
zIndex: {
'55': '55',
'60': '60'
},
animation: {
'infinite-scroll': 'infinite-scroll 40s linear infinite',
'infinite-scroll-replay': 'infinite-scroll-replay 40s linear infinite'
},
keyframes: {
'infinite-scroll': {
'0%': {transform: 'translateX(0)'},
'100%': {transform: 'translateX(-100%)'},
},
'infinite-scroll-replay': {
'0%': {transform: 'translateX(100%)'},
'100%': {transform: 'translateX(0)'},
}
},
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'}
}
}
}