-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (39 loc) · 1005 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
40 lines (39 loc) · 1005 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
border: "hsl(var(--border))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
primary: {
DEFAULT: "#4a5568", // A more neutral dark gray
foreground: "#FFFFFF",
},
secondary: {
DEFAULT: "#ed8936", // A warm orange
foreground: "#000000",
},
muted: {
DEFAULT: "#e2e8f0",
foreground: "#4a5568",
},
},
fontFamily: {
sans: ["Inter", "sans-serif"],
},
boxShadow: {
soft: "0 2px 15px rgba(0, 0, 0, 0.08)",
},
},
},
plugins: [require("tailwindcss-animate")],
}