-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
70 lines (70 loc) · 1.78 KB
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
'./app.vue',
],
daisyui: {
// themes: true,
// darkTheme: 'dat', // name of one of the included themes for dark mode
base: true, // applies background color and foreground color for root element by default
styled: true, // include daisyUI colors and design decisions for all components
logs: false, // Shows info about daisyUI version and used config in the console when building your CSS
themes: [
{
"light": {
"primary": "#2494F4",
"secondary": "#c0dcfd",
"accent": "#8CD34D",
"neutral": "#032826",
"base-100": "#f0f0f0",
"info": "#549CFC",
"success": "#8CD34D",
"warning": "#FBA807",
"error": "#FC0404",
},
}, {
"dark": {
"primary": "#59c9ff",
"secondary": "#d9f3ff",
"accent": "#e4f6d1",
"neutral": "#9ca3af",
"base-100": "#111827",
"info": "#bedaff",
"success": "#cbefa7",
"warning": "#ffec87",
"error": "#ffc1c1",
},
}
]
},
theme: {
extend: {},
},
plugins: [require('daisyui')],
darkMode: 'class',
exposeConfig: true,
theme: {
extend: {
colors: {
sky: {
'50': '#eff6ff',
'100': '#dbebfe',
'200': '#c0dcfd',
'300': '#94c7fc',
'400': '#62a8f8',
'500': '#3d87f4',
'600': '#3370ea',
'700': '#1f53d6',
'800': '#2044ad',
'900': '#1f3d89',
'950': '#182653',
},
}
}
}
}