/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { light: { primaryBg: '#1B1B1B', primaryText: '#FFFFFF', secondaryText: '#5F5F5F', primaryAccent: "#F97316", primaryHoverColor: "#ed7f32", primaryLabel: "#A3E635" }, dark: { primaryBg: '#F3F4F6', primaryText: '#000000', secondaryText: '#6B7280', primaryAccent: "#2563EB", primaryHoverColor: "#ed7f32", primaryLabel: "#A3E635" }, }, }, }, plugins: [], }