import { useTheme } from '../lib/theme-context'; export default function AnimatedFireLogo({ size = 80 }) { const { theme } = useTheme(); // Theme-aware colors const colors = { dark: { flame1: '#FF6B35', flame2: '#F7931E', flame3: '#FFF200', flame4: '#FDBA16', flame5: '#FF4500' }, light: { flame1: '#F36E21', flame2: '#F6891F', flame3: '#FFD04A', flame4: '#FDBA16', flame5: '#D84315' } }; const currentColors = colors[theme] || colors.light; return (
{/* Main flame paths */} {/* Small accent flames */}
); }