-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js.bak
38 lines (38 loc) · 1007 Bytes
/
tailwind.config.js.bak
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./vendor/**/views/**/*.blade.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.{vue,js,ts,hbs,handlebars,html}'
],
plugins: [
require('daisyui')
],
daisyui: {
base: true,
darkTheme: true,
styled: true,
themes: [
{
light: {
...require('daisyui/src/theming/themes')['[data-theme=light]']
// '--primary-muted': '338 83% 66%'
}
},
{
dark: {
...require('daisyui/src/theming/themes')['[data-theme=dark]']
// '--primary-muted': '262 80% 30%'
}
},
'cupcake',
'corporate',
'emerald',
'winter',
'nord',
'business',
'coffee',
],
prefix: 'daisy-'
}
}