-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
50 lines (47 loc) · 966 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
42
43
44
45
46
47
48
49
50
const twColors = require("tailwindcss/colors")
const _ = require("lodash")
const colors = _.pick(twColors, ["gray", "red", "green", "black", "white"])
const customColors = {
...colors,
gray: {
100: "#EBEBEB",
200: "#999999",
300: "#212121",
400: "#171717",
500: "#0E0E0E",
},
teal: {
100: "#EBF5F4",
200: "#C2E2DF",
300: "#86C4BE",
400: "#359D93",
},
}
module.exports = {
content: [
"./src/pages/**/*.ts",
"./src/pages/**/*.tsx",
"./src/components/**/*.ts",
"./src/components/**/*.tsx",
],
theme: {
extend: {
fontFamily: {
display: ["Space Grotesk", "sans-serif"],
body: ["Source Sans Pro", "sans-serif"],
mono: [
"Menlo",
"Monaco",
"Lucida Console",
"Liberation Mono",
"DejaVu Sans Mono",
"Bitstream Vera Sans Mono",
"Courier New",
"monospace",
],
},
colors: customColors,
},
},
plugins: [require("@tailwindcss/typography", "@tailwindcss/custom-forms")],
}