-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
38 lines (37 loc) · 1.09 KB
/
tailwind.config.js
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
import { heroui } from "@heroui/theme";
/** @type {import("tailwindcss").Config} */
module.exports = {
content: [
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/hooks/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: "#549a7f",
50: "#eef5f2",
100: "#ddebe5",
200: "#bbd7cc",
300: "#98c2b2",
400: "#76ae99",
500: "#549a7f",
600: "#437b66",
700: "#325c4c",
800: "#223e33",
900: "#111f19"
}
},
fontFamily: {
sans: ["var(--font-sans)"],
mono: ["var(--font-mono)"],
system: ["system-ui"],
cursive: ["cursive"]
}
}
},
darkMode: "class",
plugins: [heroui()]
};