-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
94 lines (92 loc) · 2.26 KB
/
tailwind.config.js
File metadata and controls
94 lines (92 loc) · 2.26 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
require("daisyui"),
],
daisyui: {
themes: [
{
"latte": {
primary: "#1e66f5", // blue
secondary: "#ea76cb", // pink
accent: "#179299", // teal
neutral: "#dce0e8", // crust
"base-100": "#eff1f5", // base
info: "#209fb5", // sapphire
success: "#40a02b", // green
warning: "#df8e1d", // yellow
error: "#d20f39", // red
},
"frappe": {
primary: "#8caaee", // blue
secondary: "#f4b8e4", // pink
accent: "#81c8be", // teal
neutral: "#232634", // crust
"base-100": "#303446", // base
info: "#85c1dc", // sapphire
success: "#a6d189", // green
warning: "#e5c890", // yellow
error: "#e78284", // red
},
"macchiato": {
primary: "#8aadf4", // blue
secondary: "#f5bde6", // pink
accent: "#8bd5ca", // teal
neutral: "#181926", // crust
"base-100": "#24273a", // base
info: "#7dc4e4", // sapphire
success: "#a6da95", // green
warning: "#eed49f", // yellow
error: "#ed8796", // red
},
"mocha": {
primary: "#89b4fa", // blue
secondary: "#f5c2e7", // pink
accent: "#94e2d5", // teal
neutral: "#11111b", // crust
"base-100": "#1e1e2e", // base
info: "#74c7ec", // sapphire
success: "#a6e3a1", // green
warning: "#f9e2af", // yellow
error: "#f38ba8", // red
},
},
"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",
"dim",
"nord",
"sunset",],
}
}