-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.cjs
48 lines (48 loc) · 1.43 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
daisyui: {
themes: [
{
dark: {
"primary": "#343232",
"secondary": "#B8B8B8",
"accent": "#343232",
"neutral": "#272626",
"base-100": "#000000",
"base-300": "#B8B8B8",
"info": "#63cecb",
"success": "#a3e635",
"warning": "#fde047",
"error": "#dc2626",
"--rounded-box": "0rem", // border radius rounded-box utility class, used in card and other large boxes
"--rounded-btn": "0rem", // border radius rounded-btn utility class, used in buttons and similar element
"--rounded-badge": "1rem",
},
},
{
white: {
"primary": "#B8B8B8",
"secondary": "#8854ed",
"accent": "#B8B8B8",
"neutral": "#EBEBEB",
"base-100": "#FFFFFF",
"info": "#63cecb",
"success": "#008000",
"warning": "#A6A659",
"error": "#FF0000",
"--rounded-box": "0rem", // border radius rounded-box utility class, used in card and other large boxes
"--rounded-btn": "0rem", // border radius rounded-btn utility class, used in buttons and similar element
"--rounded-badge": "1rem"
},
},
],
},
plugins: [require("daisyui")],
}