-
Notifications
You must be signed in to change notification settings - Fork 25
/
tailwind.config.ts
68 lines (67 loc) · 1.74 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
import { type Config } from "tailwindcss";
import { fontFamily } from "tailwindcss/defaultTheme";
import { nextui } from "@nextui-org/react";
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: {
dark: {
// extend: "dark", // <- inherit default values from dark theme
colors: {
background: "#003f3a",
foreground: "#dcfdfb",
primary: {
50: "#dcfdfb",
100: "#b9f2ed",
200: "#94e8df",
300: "#6bddd3",
400: "#45d3c6",
500: "#2cbaad",
600: "#1c9186",
700: "#0d6860",
800: "#003f3a",
900: "#001814",
DEFAULT: "#0d6860",
foreground: "#dcfdfb",
},
focus: "#F182F6",
},
},
light: {
// extend: "light", // <- inherit default values from dark theme
colors: {
background: "#b9f2ff",
foreground: "#001814",
primary: {
50: "#dcfdfb",
100: "#b9f2ed",
200: "#94e8df",
300: "#6bddd3",
400: "#45d3c6",
500: "#2cbaad",
600: "#1c9186",
700: "#0d6860",
800: "#003f3a",
900: "#001814",
DEFAULT: "#0d6860",
foreground: "#dcfdfb",
},
focus: "#F182F6",
},
},
},
}),
],
} satisfies Config;