-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (45 loc) · 954 Bytes
/
tailwind.config.js
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
module.exports = {
content: ['./src/**/*.{astro,html,svelte,vue,js,ts,jsx,tsx}'],
plugins: [require('daisyui')],
theme: {
container: {
center: true,
},
screens: {
sm: '480px',
md: '768px',
lg: '976px',
'print': { 'raw': 'print' },
// xl: '1280px',
},
borderRadius: {
none: '0px',
sm: '0.125rem',
DEFAULT: '0.5rem 0 0 0',
md: '0.375rem',
lg: '0.5rem',
xl: '0.75rem',
'2xl': '1rem',
'3xl': '1.5rem',
full: '9999px',
},
},
daisyui: {
themes: [
{
mytheme: {
"primary": "#4d00ff",
"secondary": "#FFFFFF",
"accent": "#00d2f9",
"neutral": "#27241f",
"base-100": "#052739",
"gray": "#dddddd",
"info": "#00f9ff",
"success": "#419500",
"warning": "#ff8500",
"error": "#ff0033",
},
},
],
},
};