-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
82 lines (81 loc) · 1.8 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
/** @type {import('tailwindcss').Config} */
const config = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
},
//@ts-ignore
plugins: [require("daisyui")],
// daisyUI config (optional)
// daisyui: {
// styled: true,
// themes: true,
// base: true,
// utils: true,
// logs: true,
// rtl: false,
// prefix: "",
// darkTheme: "dark",
// },
daisyui: {
themes: [
{
dark: {
primary: "#7e22ce",
"primary-focus": "#570df8",
"primary-content": "#ffffff",
secondary: "#e5e7eb",
"secondary-focus": "#bd0091",
"secondary-content": "#ffffff",
accent: "#37cdbe",
"accent-focus": "#2aa79b",
"accent-content": "#ffffff",
neutral: "#2a2e37",
"neutral-focus": "#16181d",
"neutral-content": "#ffffff",
"base-100": "#1A1A1B",
"base-200": "#2D2D2E",
"base-300": "#59595A",
"base-400": "#59595A",
"base-content": "#ebecf0",
info: "#66c6ff",
success: "#87d039",
warning: "#e2d562",
error: "#ff6f6f",
},
},
"light",
"black",
"business",
"forest",
],
},
// daisyui: {
// themes: [
// {
// "[data-theme=dark]": {
// "color-scheme": "dark",
// primary: "#661AE6",
// "primary-content": "#ffffff",
// secondary: "#D926AA",
// "secondary-content": "#ffffff",
// accent: "#1FB2A5",
// "accent-content": "#ffffff",
// neutral: "#191D24",
// "neutral-focus": "#111318",
// "neutral-content": "#A6ADBB",
// "base-100": "#2A303C",
// "base-200": "#242933",
// "base-300": "#20252E",
// "base-content": "#A6ADBB",
// },
// },
// ],
// },
// themes: [
// "light",
// "dark",
// "black",
// ],
};
module.exports = config;