forked from chunghha/solid-daisy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
55 lines (55 loc) · 1.24 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
module.exports = {
content: ['./src/**/*.{html,js,ts,tsx}'],
theme: {
extends: {},
fontFamily: {
inter: ['inter', 'sans-serif'],
poppins: ['poppins', 'serif'],
'fira-mono': ['fira-mono']
}
},
plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms'), require('daisyui')],
// daisyUI config (optional)
daisyui: {
themes: [
{
dawn: {
primary: '#d7827e',
secondary: '#286983',
accent: '#b4637a',
neutral: '#f2e9e1',
'base-100': '#faf4ed',
info: '#56949f',
success: '#907aa9',
warning: '#ea9d34',
error: '#eb6f92',
'--rounded-box': '0.25rem',
'--rounded-btn': '0.125rem',
'--rounded-badge': '0.125rem',
'--animation-btn': '0',
'--animation-input': '0',
'--btn-focus-scale': '1'
}
},
{
rosepine: {
primary: '#ea9a97',
secondary: '#3e8fb0',
accent: '#eb6f92',
neutral: '#393552',
'base-100': '#191724',
info: '#9ccfd8',
success: '#c4a7e7',
warning: '#f6c177',
error: '#b4637a',
'--rounded-box': '0.25rem',
'--rounded-btn': '0.125rem',
'--rounded-badge': '0.125rem',
'--animation-btn': '0',
'--animation-input': '0',
'--btn-focus-scale': '1'
}
}
]
}
};