-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (41 loc) · 955 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
35
36
37
38
39
40
41
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
sans: ["Comfortaa", "sans-serif"],
mono: ["Fira Code", "monospace"]
},
screens: {
"xs": "512px"
},
content: {
empty: "\"\"",
locate: "url('/assets/design/locate.png')",
},
colors: {
bronze: {
50: "#f7f4f2",
100: "#efe9e5",
200: "#dfd3cb",
300: "#cfbcb1",
400: "#bfa697",
500: "#af907d",
600: "#8c7364",
700: "#69564b",
800: "#463a32",
900: "#231d19"
}
},
backgroundImage: {
metacity: "url('/assets/design/metacity.png')",
},
},
},
plugins: [require("@tailwindcss/typography")],
}