-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) · 820 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
34 lines (34 loc) · 820 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,jsx}"],
theme: {
extend: {},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
mytheme: {
// primary: "#FF651C",
// secondary: "#ec4899",
// accent: "#212121",
// neutral: "#9ca3af",
// "base-100": "#FFFFFF",
// info: "#3ABFF8",
// success: "#36D399",
// warning: "#FBBD23",
// error: "#f87272",
primary: "#00b0ff",
secondary: "#af3700",
accent: "#0000ff",
neutral: "#999",
"base-100": "#1c2323",
info: "#00d6ff",
success: "#6ca300",
warning: "#ba6100",
error: "#c81e44",
},
},
],
},
};