forked from AyonJD/explorer-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 803 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
35 lines (35 loc) · 803 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
35
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
daisyui: {
themes: [
{
light: {
primary: "#f79f1f",
secondary: "#130f40",
accent: "#f7f7f7",
neutral: "#F3F4F6",
"base-100": "#ffff",
info: "#98A8DD",
success: "#27ae60",
warning: "#130f40",
error: "#FA5C5C",
},
},
{
dark: {
primary: "#F59E0B",
secondary:"#ffff",
accent: "#090A27",
neutral: "#dfdfef",
"base-100": "#090A27",
info: "#98A8DD",
success: "#27ae60",
warning: "#130f40",
error: "#FB7185",
},
},
],
},
plugins: [require("daisyui")],
};