-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
40 lines (31 loc) · 785 Bytes
/
tailwind.config.ts
File metadata and controls
40 lines (31 loc) · 785 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
36
37
38
39
40
import { type Config } from "tailwindcss";
import defaultTheme from "tailwindcss/defaultTheme";
export default {
content: ["./src/**/*.tsx"],
theme: {
extend: {
colors: { primary: "#22c55e" },
fontFamily: {
sans: ["var(--font-sans)", ...defaultTheme.fontFamily.sans],
},
},
},
// daisyui: {
// themes: [
// {
// mytheme: {
// primary: "#22c55e",
// secondary: "#ff00d3",
// accent: "#4a00ff",
// neutral: "#2b3440",
// "base-100": "#ffffff",
// info: "#00b5ff",
// success: "#9affdc",
// warning: "#ffbe00",
// error: "#ff5861",
// },
// },
// ],
// },
plugins: [require("daisyui")],
} satisfies Config;