-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
50 lines (46 loc) · 1.15 KB
/
tailwind.config.ts
File metadata and controls
50 lines (46 loc) · 1.15 KB
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
import daisyui from "daisyui";
import typography from "@tailwindcss/typography";
import type { Config } from "tailwindcss";
export default {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
screens: {
print: { raw: "print" },
screen: { raw: "screen" },
},
},
},
daisyui: {
themes: [
{
sktheme: {
"primary": "#ffc800",
"primary-content": "#160f00",
"secondary": "#79b530",
"secondary-content": "#010a00",
"accent": "#00aef9",
"accent-content": "#000b15",
"neutral": "#11252d",
"neutral-content": "#cacfd1",
"base-100": "#ffffff",
"base-200": "#dedede",
"base-300": "#bebebe",
"base-content": "#161616",
"info": "#7fd9ff",
"info-content": "#061116",
"success": "#00d651",
"success-content": "#001002",
"warning": "#f68f00",
"warning-content": "#150700",
"error": "#ff7279",
"error-content": "#160405",
},
},
],
},
plugins: [
daisyui,
typography,
],
} satisfies Config;