-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
61 lines (61 loc) · 1.46 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
"./app.vue",
"./error.vue"
],
theme: {
extend: {},
},
daisyui: {
themes: [
{
"urgrowth-light": {
"primary": "#0c52ee",
"secondary": "#3d0fe6",
"accent": "#3375e3",
"neutral": "#34363b",
"base-100": "#EDEADF",
"info": "#1e69a9",
"success": "#219d2b",
"warning": "#fcbd27",
"error": "#c01d1d",
"--rounded-box": ".25rem",
"--rounded-btn": ".25rem",
"--rounded-badge": "1.9rem",
},
},
{
"living-nature": {
"primary": "#344E41",
"secondary": "#558055",
"accent": "#358065",
"neutral": "#5C7D57",
"base-100": "#EDEADF",
"info": "#266D85",
"success": "#397D51",
"warning": "#fcbd27",
"error": "#702E19",
},
},
{
"relaxed-blue": {
"primary": "#1534A5",
"secondary": "#2e7dee",
"accent": "#1E44CD",
"neutral": "#34363b",
"base-100": "#EDEADF",
"info": "#1e69a9",
"success": "#219d2b",
"warning": "#fcbd27",
"error": "#c01d1d",
},
},
], },
plugins: [require("daisyui")],
};