-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
61 lines (61 loc) · 1.5 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
55
56
57
58
59
60
61
module.exports = {
purge: false,
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
gridTemplateRows: {
'7': 'repeat(7, minmax(0, 1fr))'
},
gridTemplateColumns: {
'26': 'repeat(26, minmax(0, 1fr))',
'52': 'repeat(52, minmax(0, 1fr))'
},
animation: {
"spin-slow": "spin 2s linear infinite",
},
colors: {
gray: {
400: "#565B6C",
300: "#7B829A",
200: "#A0AEC0",
100: "#ECEDF1",
10: "#FAF9F9",
},
kiwi: {
light: "#C1D4D3",
DEFAULT: "#89B0AE",
dark: "#749593",
},
durazno: {
light: "#F8D7BE",
DEFAULT: "#F9B7A9",
},
manzana: {
DEFAULT: "#E9755B",
},
},
},
},
variants: {
extend: {
backgroundColor: ["checked", "disabled"],
borderColor: ["checked"],
borderWidth: ["hover", "group-hover"],
cursor: ["disabled"],
display: ["group-hover", "group-focus"],
opacity: ["disabled"],
ringColor: ["hover", "group-focus"],
ringOffsetColor: ["hover", "group-focus"],
ringOffsetWidth: ["hover", "group-focus"],
ringOpacity: ["hover", "group-focus"],
ringWidth: ["hover", "group-focus"],
textColor: ["disabled"],
},
},
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/line-clamp"),
require("tailwind-scrollbar"),
require("@tailwindcss/aspect-ratio"),
],
};