forked from santoslgl01-web/lightning-bounty-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
32 lines (30 loc) · 757 Bytes
/
tailwind.config.ts
File metadata and controls
32 lines (30 loc) · 757 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
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}",
],
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: ["'DM Sans'", "system-ui", "sans-serif"],
mono: ["'DM Mono'", "'Fira Code'", "monospace"],
display: ["'Space Grotesk'", "system-ui", "sans-serif"],
},
colors: {
accent: {
DEFAULT: "#f97316", // orange-500
light: "#fed7aa", // orange-200
dark: "#c2410c", // orange-700
},
},
borderWidth: {
DEFAULT: "1px",
},
},
},
plugins: [],
};
export default config;