-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
56 lines (55 loc) · 1.4 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
import { heroui } from "@heroui/react";
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}",
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial":
"radial-gradient(closest-side, var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
fontFamily: {
sans: ["var(--font-sans)"],
heading: ["var(--font-heading)"],
},
},
},
darkMode: "class",
plugins: [
heroui({
themes: {
dark: {
colors: {
background: "#030712",
foreground: "#f9fafb",
default: {
50: "#111827",
100: "#1f2937",
200: "#374151",
300: "#4b5563",
400: "#6b7280",
500: "#9ca3af",
600: "#d1d5db",
700: "#e5e7eb",
800: "#f3f4f6",
900: "#f9fafb",
DEFAULT: "#374151",
},
content1: "#111827",
content2: "#1f2937",
content3: "#374151",
content4: "#4b5563",
},
},
},
}),
],
};
export default config;