-
Notifications
You must be signed in to change notification settings - Fork 43
/
tailwind.config.js
45 lines (45 loc) · 1.02 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
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [
require('daisyui'),
],
daisyui: {
styled: true,
themes: [
{
'custom': {
'primary': '#1E40AF',
'primary-focus': '#345DE3',
'primary-content': '#FFFFFF',
'secondary': '#7E22CE',
'secondary-focus': '#9B38F2',
'secondary-content': '#FFFFFF',
'accent': '#EDE6E1',
'accent-focus': '#C1B5B5',
'accent-content': '#000000',
'neutral': '#3d4451',
'neutral-focus': '#2a2e37',
'neutral-content': '#ffffff',
'base-100': '#ffffff',
'base-200': '#f9fafb',
'base-300': '#d1d5db',
'base-content': '#1f2937',
'info': '#2094f3',
'success': '#009485',
'warning': '#ff9900',
'error': '#ff5724',
},
},
],
base: true,
utils: true,
logs: true,
rtl: false,
},
}