| // tailwind.config.js | |
| /** @type {import('tailwindcss').Config} */ | |
| export default { | |
| content: [ | |
| "./index.html", | |
| "./src/**/*.{js,ts,jsx,tsx}", | |
| ], | |
| theme: { | |
| extend: { | |
| colors: { | |
| 'bg': '#071026', | |
| 'muted': '#9fb0c8', | |
| 'accent': '#60a5fa', | |
| 'btn': '#0e2335', | |
| 'fg': '#e6eef8', | |
| }, | |
| fontFamily: { | |
| // Meniru font-stack Anda | |
| sans: ['Inter', 'system-ui', 'Roboto', 'sans-serif'], | |
| }, | |
| }, | |
| }, | |
| plugins: [], | |
| } |