-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (38 loc) · 894 Bytes
/
tailwind.config.js
File metadata and controls
39 lines (38 loc) · 894 Bytes
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
// tailwind.config.js
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'background': '#0A0A0A',
'primary': '#00FFFF',
'secondary': '#4C2882',
'neutral': '#F5F5F5',
},
fontFamily: {
monument: ['Monument Extended', 'sans-serif'],
satoshi: ['Satoshi', 'sans-serif'],
},
backdropBlur: {
'xl': '24px',
},
// --- TAMBAHKAN BLOK INI ---
keyframes: {
gradient: {
'0%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
'100%': { backgroundPosition: '0% 50%' },
},
},
animation: {
gradient: 'gradient 8s linear infinite'
},
// --- AKHIR BLOK ---
},
},
plugins: [],
}