-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
47 lines (46 loc) · 984 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
module.exports = {
purge: ["./src/pages/**/*.js", "./src/components/**/*.js"],
darkMode: "class", // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
sans: ["IBM Plex Sans", "ui-sans-serif", "system-ui"],
display: ["Poppins"],
},
colors: {
coco: {
normal: "#948E68",
brigth: "#DDA619",
},
primary: {
dark: "#125C13",
normal: "#3E7C17",
light: "#F4A442",
white: "#FEFDF9",
lesswhite: "#F0EEE7",
coco: "#F4A442",
darkcoco: "#E39A40",
krem: "#F7F3E7",
red: "#FF0000",
redlight: "#FF4C4C",
},
green: {
normal: "#339710",
},
},
maxHeight: {
128: "32rem",
},
height: {
128: "32rem",
},
width: {
128: "32rem",
},
},
},
variants: {
extend: {},
},
plugins: [require("daisyui")],
};