-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (39 loc) · 889 Bytes
/
tailwind.config.js
File metadata and controls
39 lines (39 loc) · 889 Bytes
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
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
teal: "#009A9C",
blue: "#0F0F38",
white: "#FCFCFE",
yellow: "#ECB807",
gray: "#F2F2F2",
guarden: "#B6C197",
pinene: "#F8F5E9",
neurodetech: "#1A1E4D",
remine: "#CFDBDD",
rooting: "#98CC9A",
ecolight: "#483C6C",
prions: "#383838",
off: "#404855",
crispier: "#373B40",
staphylocide: "#404855",
},
fontFamily: {
brandon: ["Brandon Grotesque"],
brandonm: ["Brandon Grotesque Medium"],
nunito: ["Nunito Sans"],
},
fill: theme => ({
white: theme("colors.white"),
}),
},
},
variants: {
extend: {
display: ["group-hover"],
},
},
plugins: [],
}