-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
43 lines (42 loc) · 991 Bytes
/
tailwind.config.cjs
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
const plugin = require("tailwindcss/plugin");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
icon: {
inactive: "#7a7a7a",
hover: "#8c9290",
active: "#15e38a",
"split-active": "#15e38a transparent #15e38a transparent",
},
neu: {
DEFAULT: "#ececec",
},
},
animation: {
"bounce-horizontal": "bounce-horizontal-animation 2s infinite ease",
},
keyframes: {
"bounce-horizontal-animation": {
"50%": { "background-position": "left" },
},
},
},
},
plugins: [
plugin(function ({ addUtilities }) {
addUtilities({
".h-d-screen": {
height: "100vh",
height: "100dvh",
},
".min-h-d-screen": {
"min-height": "100vh",
"min-height": "100dvh",
},
});
}),
],
};