-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
47 lines (44 loc) · 1.13 KB
/
Copy pathtailwind.config.js
File metadata and controls
47 lines (44 loc) · 1.13 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
46
47
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
],
darkMode: 'class',
theme: {
extend: {
colors: {
// Soft whites and off-whites
'soft-white': '#FCFCFC',
'cream': '#F8F7F4',
'ivory': '#F6F6F1',
// Light greys
'platinum': '#E6E6E6',
'gainsboro': '#DCDCDC',
'light-grey': '#D3D3D3',
// Wood tones
'beige': '#F5F5DC',
'light-wood': '#E6CCB2',
'medium-wood': '#DDB892',
'dark-wood': '#B08968',
// Accent colors (subtle)
'sage': '#D1D9CE',
'dusty-blue': '#AEC5EB',
'soft-charcoal': '#3C4043',
},
boxShadow: {
'soft': '0 2px 15px rgba(0, 0, 0, 0.04)',
'medium': '0 4px 20px rgba(0, 0, 0, 0.06)',
'elevated': '0 8px 30px rgba(0, 0, 0, 0.08)',
},
borderRadius: {
'xl': '0.75rem',
'2xl': '1rem',
'3xl': '1.5rem',
'4xl': '2rem',
'pill': '9999px',
},
},
},
plugins: [],
}