/** @type {import('tailwindcss').Config} */ export default { content: ['./src/**/*.{ts,tsx}', './*.html'], theme: { extend: { colors: { reo: { dark: '#1a2332', darker: '#131b27', sidebar: '#1e2d3d', teal: '#00bcd4', 'teal-dark': '#0097a7', success: '#4caf50', warning: '#ff9800', danger: '#f44336', }, }, fontFamily: { sans: ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif'], }, }, }, plugins: [], };