forked from eduardolat/pgbackweb
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
33 lines (32 loc) · 759 Bytes
/
tailwind.config.ts
File metadata and controls
33 lines (32 loc) · 759 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
import type { Config } from "tailwindcss";
import daisyui from "daisyui";
import * as daisyuiThemes from "daisyui/src/theming/themes";
export default {
content: ["./internal/view/web/**/*.go"],
// deno-lint-ignore no-explicit-any
plugins: [daisyui as any],
daisyui: {
logs: false,
themes: [
{
light: {
...daisyuiThemes.light,
primary: "#2be7c8",
"success-content": "#ffffff",
"error-content": "#ffffff",
},
dark: {
...daisyuiThemes.dracula,
primary: "#2be7c8",
},
},
],
darkTheme: "dark",
},
theme: {
screens: {
desk: "768px", // only one breakpoint to keep it simple
},
extend: {},
},
} satisfies Config;