-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
69 lines (68 loc) · 1.62 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import { nextui } from "@nextui-org/react";
import { type Config } from "tailwindcss";
import { fontFamily } from "tailwindcss/defaultTheme";
export default {
content: [
"./src/**/*.tsx",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-sans)", ...fontFamily.sans],
},
},
},
darkMode: "class",
plugins: [
nextui({
themes: {
light: {
colors: {
background: "#eeeffc",
foreground: "#02030d",
primary: {
DEFAULT: "#3b1674",
foreground: "#eeeffc",
},
secondary: {
DEFAULT: "#e1cefd",
foreground: "#02030d",
},
success: {
DEFAULT: "#BBECBE",
foreground: "#02030d",
},
danger: {
DEFAULT: "#F39CA8",
foreground: "#02030d",
},
focus: "#3b1674",
},
},
dark: {
colors: {
background: "#030411",
foreground: "#f2f3fd",
primary: {
DEFAULT: "#b18be9",
foreground: "#030411",
},
secondary: {
DEFAULT: "#150231",
foreground: "#f2f3fd",
},
success: {
DEFAULT: "#bbecbe",
foreground: "#030411",
},
danger: {
DEFAULT: "#f39ca8",
foreground: "#030411",
},
},
},
},
}),
],
} satisfies Config;