Spaces:
Running
Running
| /** @type {import('tailwindcss').Config} */ | |
| export default { | |
| content: [ | |
| "./index.html", | |
| "./src/**/*.{js,ts,jsx,tsx}", | |
| ], | |
| theme: { | |
| extend: { | |
| fontFamily: { | |
| sans: ['Inter', 'sans-serif'], | |
| }, | |
| colors: { | |
| primary: "#2563EB", | |
| secondary: "#475569", | |
| accent: "#F59E0B", | |
| background: "#0F172A", | |
| surface: "#1E293B", | |
| } | |
| }, | |
| }, | |
| plugins: [], | |
| } | |