-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
88 lines (87 loc) · 2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
const plugin = require("tailwindcss/plugin");
module.exports = {
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
transitionDuration: {
3000: "3000ms",
},
},
height: {
12: "48px",
xl: "725px",
x: "500px",
},
maxWidth: {
"3-xl": "720px",
},
zIndex: {
1: 1,
2: 2,
10: 10,
},
lineHeight: {
96: "96px",
6: "22px",
54: "54px",
48: "48px",
},
borderRadius: {
custom: "30% 70% 59% 41%/30% 38% 62% 70%",
md: "15px",
50: "50%",
4: "4px",
10: "10px",
"r-xl": "0 10px 10px 0",
"r-yl": "10px 0 0 10px",
},
boxShadow: {
custom: "0 0 15px rgb(0, 0, 0,10%)",
team: "0 0 15px rgb(0, 0, 0, 20%)",
},
},
variants: {
variants: {
backgroundColor: [
"responsive",
"hover",
"focus",
"group-hover",
"group-focus",
],
textColor: ["responsive", "hover", "focus", "group-hover", "group-focus"],
},
},
plugins: [
plugin(({ addVariant, e }) => {
addVariant("before", ({ modifySelectors, separator }) => {
modifySelectors(({ className }) => {
return `.${e(`before${separator}${className}`)}::before`;
});
});
addVariant("after", ({ modifySelectors, separator }) => {
modifySelectors(({ className }) => {
return `.${e(`after${separator}${className}`)}::after`;
});
});
}),
plugin(({ addUtilities }) => {
const contentUtilities = {
".content": {
..."attr(data-content)",
},
".content-style": {
...["attr(content-style)"],
},
".content-before": {
content: "attr(data-before)",
},
".content-after": {
content: "attr(data-after)",
},
};
addUtilities(contentUtilities, ["before", "after"]);
}),
],
};