-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
42 lines (41 loc) · 1003 Bytes
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
import daisyui from "daisyui";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
daisyui: {
themes: [
{
light: {
...require("daisyui/src/theming/themes")["light"],
"base-200": "#FFF4EA",
primary: "#FF6B00",
"primary-content": "#fff",
secondary: "#6B00FF",
accent: "#0094FF",
},
dim: {
...require("daisyui/src/theming/themes")["dim"],
primary: "#B26DEB",
"primary-content": "#fff",
secondary: "#EB6DE5",
"secondary-content": "#fff",
accent: "#A6EB6D",
},
},
],
},
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
},
},
plugins: [daisyui],
};
export default config;