forked from torrust/torrust-index-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
55 lines (55 loc) · 1.28 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"components/**/*.{vue,js,ts}",
"layouts/**/*.vue",
"pages/**/*.vue",
"app.vue",
"plugins/**/*.{js,ts}",
"nuxt.config.{js,ts}"
],
theme: {
fontFamily: {
display: ["Inter", "system-ui", "sans-serif"],
body: ["Inter", "system-ui", "sans-serif"]
}
},
daisyui: {
themes: [
{
dark: {
primary: "#f28c18",
"primary-content": "#fff7ee",
secondary: "#187EF2",
accent: "#51a800",
neutral: "#1b1d1d",
"base-100": "#212121",
info: "#2563eb",
success: "#16a34a",
warning: "#d97706",
error: "#dc2626"
},
light: {
primary: "#f28c18",
"primary-content": "#ffffff",
secondary: "#187EF2",
accent: "#51a800",
neutral: "#3b424e",
"base-100": "#f0f0f0",
"base-200": "#f5f5f5",
"base-300": "#ffffff",
info: "#2563eb",
success: "#16a34a",
warning: "#d97706",
error: "#dc2626",
"neutral-content": "#333333"
}
}
]
},
darkMode: "class",
plugins: [
require("daisyui"),
require("@tailwindcss/typography")
]
};