-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
46 lines (45 loc) · 1.51 KB
/
tailwind.config.ts
File metadata and controls
46 lines (45 loc) · 1.51 KB
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
/** @type {import('tailwindcss').Config} */
import flattenColorPalette from "tailwindcss/lib/util/flattenColorPalette";
import plugin from "tailwindcss/plugin";
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: "00BCD4",
},
animation: {
shake: "shake 0.82s cubic-bezier(.36,.07,.19,.97) both",
},
keyframes: {
shake: {
"10%, 90%": { transform: "translate3d(-1px, 0, 0)" },
"20%, 80%": { transform: "translate3d(2px, 0, 0)" },
"30%, 50%, 70%": { transform: "translate3d(-4px, 0, 0)" },
"40%, 60%": { transform: "translate3d(4px, 0, 0)" },
},
},
},
},
plugins: [
plugin(({ matchUtilities, theme }) => {
matchUtilities(
{
"border-only-t": (value) => ({ borderTop: `1px solid ${value}` }),
"border-only-b": (value) => ({ borderBottom: `1px solid ${value}` }),
"border-only-l": (value) => ({ borderLeft: `1px solid ${value}` }),
"border-only-r": (value) => ({ borderRight: `1px solid ${value}` }),
"border-only-x": (value) => ({
borderLeft: `1px solid ${value}`,
borderRight: `1px solid ${value}`,
}),
"border-only-y": (value) => ({
borderTop: `1px solid ${value}`,
borderBottom: `1px solid ${value}`,
}),
},
{ values: flattenColorPalette(theme("colors")), type: "color" },
);
}),
],
};