/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { 'robinhood-green': '#00C805', 'robinhood-red': '#FF5000', 'robinhood-bg': '#F8F9FA', 'robinhood-dark': '#1E1E1E', }, fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'], }, }, }, plugins: [], }