-
Notifications
You must be signed in to change notification settings - Fork 9
/
tailwind.config.js
48 lines (48 loc) · 991 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue",
"./nuxt.config.{js,ts}",
],
theme: {
extend: {
borderWidth: {
3: "3px",
},
zIndex: {
1000: "1000",
},
},
},
plugins: [require("daisyui"), require("tailwindcss-animated")],
theme: {
extend: {
colors: {
"base-400": "var(--base-400)",
},
},
},
daisyui: {
themes: [
{
light: {
...require("daisyui/src/theming/themes")["light"],
primary: "#003566",
"base-300": "#d1d5db",
"--base-400": "#f0f0f0",
},
dark: {
...require("daisyui/src/theming/themes")["dark"],
primary: "#003566",
"base-300": "#374151",
"--base-400": "#001104",
},
},
],
},
};