-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 1017 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
33 lines (33 loc) · 1017 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
// This gives you the sleek Greycliff/Avenir look for UI and body text
sans: ['Inter', 'sans-serif'],
// This gives you the premium "Book" aesthetic for large headings
serif: ['Instrument Serif', 'serif'],
},
colors: {
// Custom "Matte" palette to avoid the generic "AI" look
paper: {
light: '#FDFDFC', // Primary background (Eggshell)
DEFAULT: '#F5F5F3', // Secondary sections
dark: '#EBEBE9', // Borders and subtle dividers
},
ink: {
light: '#404040', // Muted body text
DEFAULT: '#111111', // Strong headings
dark: '#000000', // Pure black accents
},
},
letterSpacing: {
tightest: '-.06em',
tighter: '-.04em',
widest: '.2em',
},
},
},
plugins: [],
};