import { useTheme } from '../lib/theme-context'; export default function AnimatedFireLogo({ size = 100 }) { const { theme } = useTheme(); // Theme-aware colors const colors = { dark: { fireBase: '#FF8C42', fireMiddle: '#FF6B35', fireTop: '#FFF200', cardBg: '#F6E3AE', cardBorder: '#E38F36' }, light: { fireBase: '#FF6B35', fireMiddle: '#F6891F', fireTop: '#FFD04A', cardBg: '#F6E3AE', cardBorder: '#E38F36' } }; const currentColors = colors[theme] || colors.light; return (
{/* Contained Fire Base */}
{/* Main fire shape - more contained */} {/* Flame tongues */}
{/* Left Card */}
{/* Card corner symbol - bottom left */} J♥
{/* Right Card */}
{/* Card corner symbol - top right */} K♥
{/* Center Card - Front */}
{/* Center fire symbol */}
); }