-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
74 lines (74 loc) · 1.93 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
const config = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {}
},
plugins: [require('@tailwindcss/typography'), require('daisyui')],
daisyui: {
themes: [
{
light: {
'primary': '#DB2777',
'primary-focus': '#9D174D',
'primary-content': '#ffffff',
'secondary': '#E2E8F0',
'secondary-focus': '#CBD5E1',
'secondary-content': '#1E293B',
'accent': '#E2E8F0',
'accent-focus': '#CBD5E1',
'accent-content': '#1E293B',
'neutral': '#F1F5F9',
'neutral-focus': '#E2E8F0',
'neutral-content': '#1E293B',
'base-100': '#ffffff',
'base-200': '#F1F5F9',
'base-300': '#E2E8F0',
'base-content': '#1e2734',
'info': '#1c92f2',
'success': '#009485',
'warning': '#ff9900',
'error': '#ff5724',
'--rounded-box': '.5rem',
'--rounded-btn': '.5rem',
'--rounded-badge': '2rem',
'--animation-btn': '.3',
'--animation-input': '.3',
'--btn-text-case': 'neutral',
'--navbar-padding': '.5rem',
'--border-btn': '1px'
},
dark: {
'primary': '#DB2777',
'primary-focus': '#9D174D',
'primary-content': '#ffffff',
'secondary': '#1E293B',
'secondary-focus': '#0F172A',
'secondary-content': '#ffffff',
'accent': '#1E293B',
'accent-focus': '#0F172A',
'accent-content': '#ffffff',
'neutral': '#1E293B',
'neutral-focus': '#0F172A',
'neutral-content': '#ffffff',
'base-100': '#0F172A',
'base-200': '#1E293B',
'base-300': '#334155',
'base-content': '#ebecf0',
'info': '#66c7ff',
'success': '#87cf3a',
'warning': '#e1d460',
'error': '#ff6b6b',
'--rounded-box': '.5rem',
'--rounded-btn': '.5rem',
'--rounded-badge': '2rem',
'--animation-btn': '.3',
'--animation-input': '.3',
'--btn-text-case': 'neutral',
'--navbar-padding': '.5rem',
'--border-btn': '1px'
}
}
]
}
};
module.exports = config;