-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (30 loc) · 845 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
30 lines (30 loc) · 845 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
cream: {
DEFAULT: '#FDFBF7', // Deep cream background
dark: '#F7F3E9', // Slightly darker cream for panels
},
orange: {
burnt: '#C85A32', // Accent color for primary actions/buttons
},
olive: {
DEFAULT: '#5F6F52', // Accent color for tags/success states
light: '#A9B388',
},
charcoal: '#2C3327', // Soft text color (never use pure black on cream!)
},
fontFamily: {
serif: ['Lora', 'Playfair Display', 'serif'], // Editorial head
sans: ['Inter', 'system-ui', 'sans-serif'], // Body text
},
},
},
plugins: [],
}