-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (40 loc) · 969 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
40 lines (40 loc) · 969 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
39
40
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./**/*.html"],
theme: {
extend: {
colors: {
surface: "#FAF7F2",
ink: "#1A1A18",
accent: "#C4622D",
muted: "#8A8880",
warm: {
50: "#FAF7F2",
100: "#F5EFE6",
200: "#E8E4DC",
300: "#D4CFC5",
400: "#B8B3A8",
500: "#8A8880",
600: "#5C5A54",
700: "#3A3835",
800: "#2A2825",
900: "#1A1A18",
},
},
fontFamily: {
display: ["Playfair Display", "Georgia", "serif"],
sans: ["DM Sans", "system-ui", "sans-serif"],
},
letterSpacing: {
editorial: "0.2em",
"editorial-sm": "0.14em",
"editorial-xs": "0.12em",
},
boxShadow: {
card: "0 4px 24px rgba(26, 26, 24, 0.06)",
"card-hover": "0 8px 40px rgba(26, 26, 24, 0.1)",
},
},
},
plugins: [],
};