forked from pascalinthecloud/pgbackweb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
35 lines (34 loc) · 779 Bytes
/
tailwind.config.ts
File metadata and controls
35 lines (34 loc) · 779 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
import type { Config } from "tailwindcss";
import daisyui from "daisyui";
import * as daisyuiThemes from "daisyui/src/theming/themes";
export default {
content: [
"./internal/view/web/**/*.go",
"./internal/view/static/js/init-dialogs.js",
],
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;