-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (40 loc) · 881 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
42 lines (40 loc) · 881 Bytes
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
import { heroui } from "@heroui/react";
/** @type {import('tailwindcss').Config} */
const config = {
content: [
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}",
"./node_modules/markstream-react/dist/**/*.{js,mjs}",
],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-sans)"],
mono: ["var(--font-mono)"],
},
colors: {
gold: {
200: "#FEF08A", // light gold
950: "#1A1300", // near-black gold
},
},
},
},
darkMode: "class",
plugins: [
heroui({
themes: {
dark: {
colors: {
primary: {
DEFAULT: "#fcd535",
foreground: "#000000",
},
},
},
},
}),
],
};
module.exports = config;