-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
69 lines (68 loc) · 1.86 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import type { Config } from "tailwindcss"
export default {
content: ["./app/**/*.{ts,tsx}"],
theme: {
extend: {
boxShadow: {
seriaIncreible: "#6F49A0 2px 4px 0px 0px",
seExtranaALaNona: "#FE7F03 2px 4px 0px 0px",
paraisoFiscal: "#CE6017 2px 4px 0px 0px",
soneQueVolaba: "#006BA6 2px 4px 0px 0px",
cuandoEricConocioAMilton: "#146139 2px 4px 0px 0px",
miPrimoEsAsi: "#C56830 2px 4px 0px 0px",
generacionDorada: "#FB7F14 2px 4px 0px 0px",
brandBlue: "#015FA0 2px 4px 0px 0px",
},
colors: {
google: {
blue: "#4285F4",
},
brand: {
blue: "#015FA0",
blueHover: "#B3E0FF",
red: "#FF0044",
redHover: "#FFB2C7",
stone: "#F2F2F2",
},
show: {
seriaIncreible: {
primary: "#6F49A0",
primaryHover: "#D7CAE7",
secondary: "#F8C552",
},
seExtranaALaNona: {
primary: "#FE7F03",
primaryHover: "#FFD8B3",
secondary: "#51F5FA",
},
paraisoFiscal: {
primary: "#CE6017",
primaryHover: "#F5C4A3",
secondary: "#9DE269",
},
soneQueVolaba: {
primary: "#006BA6",
primaryHover: "#B2E4FF",
secondary: "#FF9600",
},
cuandoEricConocioAMilton: {
primary: "#146139",
primaryHover: "#95E9BE",
secondary: "#F78214",
},
miPrimoEsAsi: {
primary: "#C56830",
primaryHover: "#EBC4AD",
secondary: "#333186",
},
generacionDorada: {
primary: "#FB7F14",
primaryHover: "#FDC89B",
secondary: "#FFE514",
},
},
},
},
},
plugins: [],
} satisfies Config