-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
45 lines (43 loc) · 1.72 KB
/
tailwind.config.ts
File metadata and controls
45 lines (43 loc) · 1.72 KB
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
40
41
42
43
44
45
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}',
'./content/**/*.{md,mdx}',
'./lib/**/*.{ts,tsx}',
],
theme: {
extend: {
colors: {
clay: {
50: '#fdf8f5', // warm off-white background
100: '#f5ebe0', // blush beige
200: '#e8d5c0', // pale nude
300: '#d4b896', // dusty peach
400: '#c19572', // muted terracotta
500: '#a67c52', // cinnamon clay — headings & accents
600: '#8b6340', // deeper clay
700: '#6b4c30', // body text default
800: '#4a3420',
900: '#2d1f12',
},
},
fontFamily: {
// ─── CUSTOM FONTS ──────────────────────────────────────────────────
// Font names must match the @fontsource packages imported in
// app/layout.tsx. To change a font, update both that file and
// the family names below.
// ───────────────────────────────────────────────────────────────────
playfair: ['"Playfair Display"', 'Georgia', '"Times New Roman"', 'serif'],
nunito: ['Nunito', '-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'sans-serif'],
lato: ['Lato', '-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'sans-serif'],
},
lineHeight: {
loose: '1.9',
},
},
},
plugins: [],
};
export default config;