-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
55 lines (54 loc) · 1.78 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
import type { Config } from "tailwindcss"
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
plugins: [require("daisyui")],
daisyui: {
themes: [{
dark: {
"primary": "#5DE4C7",
"primary-focus": "#66C5AE", // will be inferred if not specified
"primary-content": "#183831",
"secondary": "#A4EEED",
// "secondary-focus": "#56CDCB", // will be inferred if not specified
"accent": "#C9AFF0",
// "accent-focus": "#B18CE7", // will be inferred if not specified
"neutral": "#2B2938",
"base-100": "#181721",
"base-200": "#1E1D2A",
"base-content": "#E0DEF2", // will be inferred if not specified
"info": "#8AE3F8",
// "info-content": "#7BC1E4", // will be inferred if not specified
"success": "#5DE4C7",
// "success-content": "#66C5AE", // will be inferred if not specified
"warning": "#F4C886",
// "warning-content": "#EAAE7E", // will be inferred if not specified
"error": "#E9678C",
// "error-content": "#CE5076" // will be inferred if not specified
".badge": {
"border": "none",
}
},
},{
light: {
// eslint-disable-next-line @typescript-eslint/no-var-requires
...require("daisyui/src/theming/themes")["light"],
"primary": "#4301FF",
"neutral": "#ddd",
"neutral-content": "#5D585A",
"base-content": "#2D282A",
"base-100": "#fafafa",
"base-200": "#f6f6f6",
".badge": {
"border-style": "solid",
"border-width": "1px",
"border-color": "currentColor"
}
}
}]
}
}
export default config