-
Notifications
You must be signed in to change notification settings - Fork 31
/
tailwind.config.cjs
156 lines (156 loc) · 4.08 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
daisyui: {
themes: [
"customblack",
"light",
"lofi",
"cupcake",
"corporate",
"retro",
"valentine",
"garden",
"aqua",
"pastel",
"wireframe",
"winter",
"cyberpunk",
// 'bumblebee',
// 'emerald',
// 'fantasy',
// 'cmyk',
// 'autumn',
// 'acid',
// 'lemonade',
"dark",
"synthwave",
"halloween",
"forest",
"black",
"luxury",
"dracula",
"business",
"night",
"coffee",
{
forest: {
...require("daisyui/src/theming/themes")["[data-theme=forest]"],
"base-content": "#f3f3f3",
"base-100": "#111"
},
},
{
synthwave: {
...require("daisyui/src/theming/themes")["[data-theme=synthwave]"],
"base-100": "#2d1b69",
"primary": "#ff2975",
"secondary": "#ff901f",
"base-content": "#31f9fd"
// "base-300": "#0a0718"
}
},
{
coffee: {
...require("daisyui/src/theming/themes")["[data-theme=coffee]"],
"base-200": "#1b131a",
"base-300": "#150f14"
}
},
{
night: {
...require("daisyui/src/theming/themes")["[data-theme=night]"],
"base-200": "#0b1321",
"base-300": "#080f1a",
"base-content": "#b3c5ef"
// "primary": "#ff2975",
// "secondary": "#ff901f",
// "base-content": "#31f9fd"
}
},
{
curses: {
"color-scheme": "dark",
primary: "#FC6471",
// "primary-content": "#000000",
secondary: "#55D6BE",
accent: "#E5625E",
"base-content": "#34f09f",
"base-100": "#1C1F33",
// "base-200": "#d41344",
"base-300": "#151625",
// neutral: "#272626",
// "neutral-focus": "#343232",
info: "#0000ff",
success: "#008000",
warning: "#ffff00",
error: "#ff0000",
"--rounded-box": ".8rem",
"--rounded-btn": "0.5rem",
"--rounded-badge": "0",
"--animation-btn": "0",
"--animation-input": "0.5rem",
"--btn-text-case": "lowercase",
"--btn-focus-scale": "1",
"--tab-radius": "0",
},
staffy: {
"color-scheme": "dark",
primary: "#8741d6",
secondary: "#8741d6",
accent: "#00eb5e",
"base-content": "#f4e32a",
"base-100": "#333333",
"base-200": "#232323",
"base-300": "#212121",
neutral: "#272626",
"neutral-focus": "#343232",
info: "#0000ff",
success: "#008000",
warning: "#ffff00",
error: "#ff0000",
"--rounded-box": "0.8rem",
"--rounded-btn": "0.5rem",
"--rounded-badge": "0.5rem",
"--animation-btn": "0",
"--animation-input": "0.5rem",
"--btn-text-case": "lowercase",
"--btn-focus-scale": "1",
"--tab-radius": "0",
},
matrix: {
"color-scheme": "dark",
primary: "#80ce87",
secondary: "#204829",
accent: "#00eb5e",
"base-content": "#22b455",
"base-100": "#090909",
// "base-200": "#070707",
// "base-300": "#020202",
neutral: "#272626",
"neutral-focus": "#343232",
info: "#0000ff",
success: "#008000",
warning: "#ffff00",
error: "#ff0000",
"--rounded-box": "0rem",
"--rounded-btn": "0rem",
"--rounded-badge": "0",
"--animation-btn": "0",
"--animation-input": "0.5rem",
"--btn-text-case": "lowercase",
"--btn-focus-scale": "1",
"--tab-radius": "0",
},
},
],
},
theme: {
extend: {
transitionProperty: {
'spacing': 'margin, padding',
}
},
},
plugins: [require("daisyui")],
};