forked from arkutils/arkutils-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
48 lines (43 loc) · 1.36 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
const tailwindConfig = require('tailwindcss/defaultConfig');
const config = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
screens: {
'xs': '420px',
...tailwindConfig.theme.screens,
}
},
plugins: [require("daisyui")],
daisyui: {
themes: [
'light',
'dark',
'synthwave',
{
'dark-cyan': {
primary: '#059669',
'primary-focus': '#1a7a5c',
'primary-content': '#e0f1e0',
secondary: '#37cdbe',
'secondary-focus': '#2d8f86',
'secondary-content': '#2a2e37',
accent: '#b713d8',
'accent-focus': '#8d1fa3',
'accent-content': '#f3e6f4',
neutral: '#3d4451',
'neutral-focus': '#2a2e37',
'neutral-content': '#dbf0ea',
'base-100': '#111827',
'base-200': '#1d2e3e',
'base-300': '#2f4860',
'base-content': '#d1dce6',
info: '#2094f3',
success: '#009485',
warning: '#ff9900',
error: '#ff5724'
}
}
]
}
};
module.exports = config;