-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
54 lines (53 loc) · 1.18 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
bit: "Bitblox",
vcr: "Vcr",
},
backgroundColor: {
nave: "#0b0e16",
offBlack: "#0F121A",
},
colors: {
ligera: "#fed501",
nave: "#0b0e16",
offBlack: "#0F121A",
verde: "#7CDD00",
rojo: "#FE0000",
azul: "#0097FC",
girasol: "#FBD201",
calcetine: "#FBDB86",
acei: "#819463",
suave: "#C27AA0",
cost: "#847FF2",
gris: "#C2C0B5",
olive: "#DCEBB3"
},
fontSize: {
xxs: "0.6rem",
},
zIndex: {
1: "1",
},
screens: {
tablet: "900px",
galaxy: "300px",
pre: "400px",
otro: "1350px",
half: "1460px"
},
backgroundImage: {
fuzz: 'url("https://thedial.infura-ipfs.io/ipfs/QmcnyZRwBo2yRC8xPuyD2UVEfRGX6JNPX86dT43aPSsy5y")',
},
},
},
plugins: [],
};
export default config;