-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtailwind.config.cjs
164 lines (155 loc) · 3.57 KB
/
tailwind.config.cjs
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/** @type {import('tailwindcss').Config}*/
const config = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {}
},
daisyui: {
themes: [
'light',
'dark',
'cupcake',
'bumblebee',
'emerald',
'corporate',
'synthwave',
'retro',
'cyberpunk',
'valentine',
'halloween',
'garden',
'forest',
'aqua',
'lofi',
'pastel',
'fantasy',
'wireframe',
'black',
'luxury',
'dracula',
'cmyk',
'autumn',
'business',
'acid',
'lemonade',
'night',
'nord',
'sunset',
'dim',
'coffee',
'winter',
{'engage-dark-gray': {
"primary": "#2DD4BF",
"primary-content": "#042F2E",
"secondary": "#0F766E",
"secondary-content": "#F0FDFA",
"accent": "#22D3EE",
"accent-content": "#083344",
"neutral": "#111827",
"neutral-content": "#F3F4F6",
"base-100": "#1F2937",
"base-200": "#374151",
"base-300": "#4B5563",
"base-content": "#F1F5F9",
"info": "#38BDF8",
"info-content": "#082F49",
"success": "#34D399",
"success-content": "#022C22",
"warning": "#FACC15",
"warning-content": "#422006",
"error": "#F87171",
"error-content": "#450A0A",
}},
{'engage-dark-zinc': {
"primary": "#2DD4BF",
"primary-content": "#042F2E",
"secondary": "#0F766E",
"secondary-content": "#F0FDFA",
"accent": "#22D3EE",
"accent-content": "#083344",
"neutral": "#18181B",
"neutral-content": "#F4F4F5",
"base-100": "#27272A",
"base-200": "#3F3F46",
"base-300": "#52525B",
"base-content": "#F1F5F9",
"info": "#38BDF8",
"info-content": "#082F49",
"success": "#34D399",
"success-content": "#022C22",
"warning": "#FACC15",
"warning-content": "#422006",
"error": "#F87171",
"error-content": "#450A0A",
}},
{'engage-dark-neutral': {
"primary": "#2DD4BF",
"primary-content": "#042F2E",
"secondary": "#0F766E",
"secondary-content": "#F0FDFA",
"accent": "#22D3EE",
"accent-content": "#083344",
"neutral": "#171717",
"neutral-content": "#f5f5f5",
"base-100": "#262626",
"base-200": "#404040",
"base-300": "#525252",
"base-content": "#F1F5F9",
"info": "#38BDF8",
"info-content": "#082F49",
"success": "#34D399",
"success-content": "#022C22",
"warning": "#FACC15",
"warning-content": "#422006",
"error": "#F87171",
"error-content": "#450A0A",
}},
{'engage-dark-stone': {
"primary": "#2DD4BF",
"primary-content": "#042F2E",
"secondary": "#0F766E",
"secondary-content": "#F0FDFA",
"accent": "#22D3EE",
"accent-content": "#083344",
"neutral": "#1C1917",
"neutral-content": "#F5F5F4",
"base-100": "#292524",
"base-200": "#44403C",
"base-300": "#57534E",
"base-content": "#F1F5F9",
"info": "#38BDF8",
"info-content": "#082F49",
"success": "#34D399",
"success-content": "#022C22",
"warning": "#FACC15",
"warning-content": "#422006",
"error": "#F87171",
"error-content": "#450A0A",
}},
{'engage-dark-vercel': {
"primary": "#d4d4d4",
"primary-content": "#0a0a0a",
"secondary": "#525252",
"secondary-content": "#f5f5f5",
"accent": "#d946ef",
"accent-content": "#fae8ff",
"neutral": "#171717",
"neutral-content": "#F5F5F5",
"base-100": "#000",
"base-200": "#171717",
"base-300": "#262626",
"base-content": "#F1F5F9",
"info": "#38BDF8",
"info-content": "#082F49",
"success": "#34D399",
"success-content": "#022C22",
"warning": "#FACC15",
"warning-content": "#422006",
"error": "#F87171",
"error-content": "#450A0A",
},},
]
},
plugins: [require('daisyui')]
};
module.exports = config;