-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (54 loc) · 1.09 KB
/
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
51
52
53
54
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
offBlack: "#031402",
ligeroAzul: "#23FEFC",
oscuraAzul: "#341CFE",
ama: "#F6D39B",
moda: "#E3E1EE",
sol: "#EDFF95",
aBlack: "#010101",
rio: "#8EADB5",
verde: "#2CC5AF",
ballena: "#FFD85F",
fria: "#C1D17A",
costa: "#2b90fd",
run: "#ed8801",
comp: "#5fabb9",
rojo: "#8a021b",
},
fontFamily: {
vcr: "VCR",
ignite: "Ignite",
mine: "Minecrafter",
},
width: {
100: "33rem",
},
height: {
100: "24.5rem",
},
zIndex: {
1: 1,
5: 5
},
fontSize: {
xxs: "0.6rem"
},
screens: {
tablet: "800px",
max: "1460px",
renewed: "988px",
galaxy: "480px"
},
},
},
plugins: [],
};