Files
eo/tailwind.config.js
kediritechnopark c03cf59f86 ok
2025-08-22 18:27:47 +07:00

22 lines
463 B
JavaScript

// tailwind.config.js
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}", // pastikan path sesuai struktur project kamu
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
colors: {
'brand-dark': '#0D1117',
'brand-card': '#161B22',
'brand-accent': '#10B981',
'brand-accent-hover': '#059669',
'brand-subtle': '#30363D',
},
},
},
plugins: [],
}