-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (38 loc) · 904 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
38 lines (38 loc) · 904 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
// The Atlantic brand palette
atlantic: {
charcoal: '#1a1a1a',
slate: '#2d3436',
stone: '#636e72',
silver: '#b2bec3',
pearl: '#dfe6e9',
cream: '#fafafa',
white: '#ffffff',
gold: '#c9a227',
'gold-light': '#e8d490',
burgundy: '#6c2438',
},
},
fontFamily: {
serif: ['Cormorant Garamond', 'Georgia', 'serif'],
sans: ['Libre Franklin', 'system-ui', 'sans-serif'],
},
boxShadow: {
'card': '0 2px 8px rgba(0,0,0,0.04)',
'card-hover': '0 4px 16px rgba(0,0,0,0.08)',
},
borderRadius: {
'card': '8px',
},
},
},
plugins: [],
}