-
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) · 1.11 KB
/
tailwind.config.js
File metadata and controls
38 lines (38 loc) · 1.11 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
module.exports = {
content: ["./src/**/*.{astro,js,jsx,ts,tsx,mdx,md}", "./public/**/*.html"],
theme: {
extend: {
colors: {
background: "#F4F0E6",
text: "#4B3A2B",
accent1: "#C8A974",
accent2: {
brick: "#B46B54",
plum: "#55354E",
},
soft: {
beige: "#D8C7B5",
sand: "#EAE3D5",
},
},
fontFamily: {
headline: ["Bona Nova SC", "serif"],
body: ["Newsreader", "serif"],
accent: ["Doulaise", "cursive"],
doulaise: ["Monsieur La Doulaise", "cursive"],
meie: ["Meie Script", "cursive"],
playfair: ["Playfair Display", "serif"],
cormorant: ["Cormorant Garamond", "serif"],
inter: ["Inter", "sans-serif"],
sourcesans: ["Source Sans Pro", "sans-serif"],
ballet: ["Ballet", "cursive"],
bodoni: ["Bodoni Moda", "serif"],
bonanova: ["Bona Nova SC", "serif"],
dmserifdisplay: ["DM Serif Display", "serif"],
dmseriftext: ["DM Serif Text", "serif"],
gloock: ["Gloock", "serif"],
},
},
},
plugins: [],
};