-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
40 lines (38 loc) · 1.01 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
import type { Config } from "tailwindcss";
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
keyframes: {
bounceHigh: {
"0%, 100%": {
transform: "translateY(-100%)", // Pantulan lebih tinggi
animationTimingFunction: "cubic-bezier(0.8, 0, 1, 1)",
},
"50%": {
transform: "translateY(0)", // Kembali ke posisi awal
animationTimingFunction: "cubic-bezier(0, 0, 0.2, 1)",
},
},
},
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
secondary: "#0f0f0f",
primary: "#0A0A0A",
variatif: "#171717",
variatif_secondary : "#161616",
},
fontFamily: {
},
animation: {
"bounce-high": "bounceHigh 1s infinite", // Animasi custom
}
},
},
plugins: [],
} satisfies Config;