-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
34 lines (34 loc) · 926 Bytes
/
tailwind.config.js
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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
fontFamily: {
caveat: ["Caveat"],
righteous: ["Righteous"],
merriweather: ["Merriweather"],
hand: ["Architects Daughter"],
ubuntu: ["Ubuntu"],
ubuntuMono: ["Ubuntu Mono"],
sourceCodePro: ["Source Code Pro"],
titilliumWeb: ["Titillium Web"],
roboto: ["Roboto"],
},
extend: {
colors: {
black: "#09080C",
rose: "#ebbcba",
love: "#eb6f92",
muted: "#6e6a86",
iris: "#c4a7e7",
gold: "#f6c177",
foam: "#9ccfd8",
pine: "#31748f"
},
},
},
variants: {},
plugins: [],
};