forked from Traewelling/traewelling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
35 lines (33 loc) · 964 Bytes
/
tailwind.config.mjs
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
import daisyui from "daisyui"
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./resources/**/welcome/**/*.blade.php",
"./resources/**/welcome/**/*.js",
"./resources/**/welcome/**/*.vue",
],
theme: {
extend: {},
},
plugins: [daisyui],
daisyui: {
themes: [
{
light: {
...require("daisyui/src/theming/themes")["light"],
"primary": "#c72730",
"secondary": "#8EC7D2",
"accent": "#DBA507",
"neutral": "#3d4451",
"base-100": "#ffffff",
},
dark: {
...require("daisyui/src/theming/themes")["dark"],
"primary": "#c72730",
"secondary": "#8EC7D2",
"accent": "#DBA507",
},
},
],
},
}