-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
36 lines (35 loc) · 888 Bytes
/
tailwind.config.ts
File metadata and controls
36 lines (35 loc) · 888 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
import type { Config } from "tailwindcss";
const { heroui } = require("@heroui/react");
export default {
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: {
colors: {
background: "#17161c",
primary: "#66d9cc",
foreground: "var(--foreground)",
offwhite: "#f4ebd1",
secondary: "#17161c",
},
fontFamily: {
koulen: ["var(--font-koulen)"],
pop: ["var(--font-poppins)"],
},
boxShadow: {
glow: "0px 0px 50px -5px rgba(0, 0, 0, 0.3)",
underline: "0px 20px 50px -10px rgba(0, 0, 0, 0.3)",
},
},
},
darkMode: "class",
plugins: [
heroui({
defaultTheme: "dark",
}),
],
} satisfies Config;