-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
33 lines (33 loc) · 1.14 KB
/
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
module.exports = {
content: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
spacing: {
15: "60px",
105: "420px",
},
fontFamily: {
display: ["Gotham Narrow", "Helvetica", "Arial", "sans-serif"],
sans: ["Gotham Narrow", "Helvetica", "Arial", "sans-serif"],
body: ["Gotham Narrow", "Helvetica", "Arial", "sans-serif"],
mono: ["Courier", "monospace"],
"open-sans": ["Open Sans", "sans-serif"],
},
colors: {
guilded: {
// https://www.guilded.gg/brand
gray: "#36363D",
black: "#111820",
gilded: "#F5C400",
// Solid colors
slate: "#292B32",
// Text
white: "#ececee", // chat messages
subtitle: "#a3a3ac", // server settings
link: "#ffeca0", // any hyperlink
},
},
},
},
plugins: [],
};