-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
47 lines (46 loc) · 1002 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
const colors = require("tailwindcss/colors")
module.exports = {
purge: {
enabled: process.env.NODE_ENV === "production",
content: ["src/**/*.js", "src/**/*.jsx"],
},
theme: {
extend: {
colors: {
beige: {
100: "#f6f5f2",
200: "#d4d6be",
300: "#d9dcbf",
500: "#908666",
600: "#67592c",
700: "#5d4530",
750: "#463322",
751: "#402915",
},
cultured: {
white: "#fbfaf9",
black: "#404547",
},
green: {
mottainai: "#73ba25",
terminal: "#22da26"
},
solarized: {
background: "#fdf6e3",
content: "#586e75"
}
},
fontFamily: {
sans: ["Lato", "sans-serif"],
},
},
},
variants: {
display: ["group-hover", "group-focus"],
extend: {
opacity: ["disabled"],
backgroundColor: ["disabled", "even"],
cursor: ["disabled"]
},
},
}