-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathtailwind.config.js
36 lines (36 loc) · 905 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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
colors: {
"dark-gray": "#1f191a",
"medium-gray": "#363636",
"light-gray": "#46403f"
},
maxWidth: {
"130px": "130px"
}
},
fontFamily: {
sans: ["Helvetica Neue", "Helvetica", "Arial", "sans-serif"],
// From https://tailwindcss.com/docs/font-family
mono: [
"ui-monospace",
"SFMono-Regular",
"Menlo",
"Monaco",
"Consolas",
"Liberation Mono",
"Courier New",
"monospace"
]
}
},
variants: {
extend: {}
},
plugins: []
};