-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
71 lines (69 loc) · 1.33 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
const colors = require("tailwindcss/colors");
const OpenColor = require("open-color/open-color.js");
export default {
presets: [OpenColor],
content: [
"./src/**/*.{html,js,ts,vue,less,css}",
"./index.html",
// "./node_modules/vue-tailwind-datepicker/**/*.js"
],
theme: {
extend: {
// colors: {
// // DO NOT CHANGE
// "vtd-primary": colors.sky,
// "vtd-secondary": colors.sky,
// },
},
},
plugins: [
require("daisyui"),
],
daisyui: {
prefix: "d-",
themes: [
{
default: {
"primary": "#63e6be",
"secondary": "#faa2c1",
"accent": "#c0eb75",
"neutral": "#495057",
"base-100": "#fff",
"info": "#2789F9",
"success": "#80D263",
"warning": "#FFEE4B",
"error": "#FF6B54",
}
},
"light",
"dark",
"cupcake",
"bumblebee",
"emerald",
"corporate",
"synthwave",
"retro",
"cyberpunk",
"valentine",
"halloween",
"garden",
"forest",
"aqua",
"lofi",
"pastel",
"fantasy",
"wireframe",
"black",
"luxury",
"dracula",
"cmyk",
"autumn",
"business",
"acid",
"lemonade",
"night",
"coffee",
"winter",
],
},
}