-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
108 lines (107 loc) · 2.6 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
module.exports = {
mode: 'jit',
purge: {
enabled: process.env.NODE_ENV === 'production',
content: [
'./*.html',
],
options: {
safelist: [
{
pattern: /data-theme$/,
}
]
},
},
darkMode: "media", // 'media' or 'class'
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
require('daisyui'),
],
daisyui: {
themes: [
{
lightest: {
"primary": "#43c3fa",
"secondary": "#8c97fc",
"accent": "#f67dbc",
"neutral": "#d2d2d2",
"base-100": "#2e2e3f",
"info": "#20a8e3",
"success": "#35d2bc",
"warning": "#f5c55d",
"error": "#fc778b",
},
lighter: {
"primary": "#43c3fa",
"secondary": "#8c97fc",
"accent": "#f67dbc",
"neutral": "#a1a2a4",
"base-100": "#22252d",
"info": "#20a8e3",
"success": "#35d2bc",
"warning": "#f5c55d",
"error": "#fc778b",
},
light: {
"primary": "#43c3fa",
"secondary": "#8c97fc",
"accent": "#f67dbc",
"neutral": "#737783",
"base-100": "#252c3d",
"info": "#20a8e3",
"success": "#35d2bc",
"warning": "#f5c55d",
"error": "#fc778b",
},
medium: {
"primary": "#43c3fa",
"secondary": "#8c97fc",
"accent": "#f67dbc",
"neutral": "#364052",
"base-100": "#202b42",
"info": "#20a8e3",
"success": "#35d2bc",
"warning": "#f5c55d",
"error": "#fc778b",
},
dark: {
"primary": "#ffc3fa",
"secondary": "#aa97fc",
"accent": "#f67dbc",
"neutral": "#2f3c50",
"base-100": "#1c0e0e",
"info": "#aaa8e3",
"success": "#aad2bc",
"warning": "#aac55d",
"error": "#fc778b",
},
darker: {
"primary": "#fc778b",
"secondary": "#ff8ff8",
"accent": "#f677b9",
"neutral": "#222f42",
"base-100": "#180404",
"info": "#ffa8e5",
"success": "#ffd2bc",
"warning": "#f5c457",
"error": "#fc7287",
},
darkest: {
"primary": "#c9001d",
"secondary": "#c9001d",
"accent": "#c9001d",
"neutral": "#c9001d",
"base-100": "#000000",
"info": "#c9001d",
"success": "#c9001d",
"warning": "#c9001d",
"error": "#c9001d",
},
},
]
}
}