-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
42 lines (36 loc) · 1.01 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
const config = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {},
plugins: [require('daisyui')],
daisyui: {
themes: [
{
dracula: {
...require('daisyui/src/colors/themes')['[data-theme=dracula]'],
primary: '#ff99d3',
'primary-focus': '#e28399',
'secondary-focus': '#a76ef7',
neutral: '#313444',
'neutral-focus': '#3c3f53',
'--tw-text-opacity': '0.85'
}
},
{
mars: {
primary: '#d57676',
'primary-focus': '#cd5c5c',
secondary: '#6dbbc4',
accent: '#a08bda',
neutral: '#332834',
'base-100': 'rgb(41, 32, 42)',
// 'base-100': '#413441',
info: '#818cf8',
success: '#38E595',
warning: '#F7A14B',
error: '#be123c'
}
}
]
}
}
module.exports = config