-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
41 lines (41 loc) · 1.27 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {}
},
daisyui: {
utils: true,
themes: [
'dark',
{
bootstrap: {
primary: '#0d6efd',
secondary: '#6c757d',
accent: '#1FB2A5',
neutral: '#191D24',
'base-100': '#ffffff',
info: '#0dcaf0',
success: '#198754',
warning: '#ffc107',
error: '#dc3545'
},
bootstrapDark: {
primary: '#0d6efd',
secondary: '#a7acb1',
accent: '#1FB2A5',
neutral: '#191D24',
'base-100': '#212529',
'base-200': '#343a40',
'base-300': '#495057',
info: '#0dcaf0',
success: '#198754',
warning: '#ffc107',
error: '#dc3545'
}
}
]
},
plugins: [require('daisyui'), require('@tailwindcss/forms')]
};