feat: Add theme system with 7 themes including Otaku and Pink Pink

- Implement ThemeContext with CSS variables for dynamic theming
- Add theme presets: Cyberpunk, Windows Classic, Dark Modern, Matrix, Industrial, Otaku Mode, Pink Pink
- Add theme selector UI in Footer with color preview
- Theme persists to localStorage
- Each theme has unique background effects, colors, and styling
- Otaku Mode: anime-style dark purple with pink/purple glow and star effects
- Pink Pink: cute pastel pink with heart pattern overlay

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-27 23:34:08 +09:00
parent 86fe466b55
commit a7296be512
6 changed files with 1007 additions and 41 deletions

View File

@@ -1,6 +1,8 @@
import React, { useState, useEffect, useMemo } from 'react';
import { Palette, ChevronUp } from 'lucide-react';
import { RobotTarget } from '../../types';
import { comms } from '../../communication';
import { useTheme, themes, ThemeName } from '../../contexts/ThemeContext';
// HW 상태 타입 (윈폼 HWState와 동일)
// status: 0=SET(미설정/회색), 1=ON(연결/녹색), 2=TRIG(트리거/노란색), 3=OFF(연결안됨/빨간색)
@@ -38,6 +40,8 @@ const getStatusColor = (status: number): { bg: string; shadow: string; text: str
export const Footer: React.FC<FooterProps> = ({ isHostConnected, robotTarget }) => {
const [hwStatus, setHwStatus] = useState<HWItem[]>([]);
const [showThemeSelector, setShowThemeSelector] = useState(false);
const { theme, themeName, setTheme, availableThemes } = useTheme();
useEffect(() => {
// HW_STATUS_UPDATE 이벤트 구독
@@ -75,6 +79,44 @@ export const Footer: React.FC<FooterProps> = ({ isHostConnected, robotTarget })
return errors.sort((a, b) => a.priority - b.priority)[0];
}, [hwStatus]);
// 테마 선택 팝업을 닫기 위한 외부 클릭 감지
useEffect(() => {
const handleClickOutside = (e: MouseEvent) => {
const target = e.target as HTMLElement;
if (!target.closest('.theme-selector')) {
setShowThemeSelector(false);
}
};
if (showThemeSelector) {
document.addEventListener('click', handleClickOutside);
}
return () => {
document.removeEventListener('click', handleClickOutside);
};
}, [showThemeSelector]);
// 테마별 배경색 스타일 (Windows Classic은 특별 처리)
const getFooterBgClass = () => {
switch (themeName) {
case 'windows-classic':
return 'bg-[#c0c0c0] border-t-2 border-white shadow-[inset_0_-1px_0_#808080]';
case 'dark-modern':
return 'bg-zinc-900/90 border-t border-zinc-700/50';
case 'matrix':
return 'bg-black/95 border-t border-green-500/30';
case 'industrial':
return 'bg-stone-900/95 border-t border-orange-500/30';
case 'otaku':
return 'bg-[#1a1025]/95 border-t border-pink-500/30 shadow-[0_-2px_20px_rgba(255,107,157,0.1)]';
case 'pink-pink':
return 'bg-[#ffe4e9]/95 border-t-2 border-pink-300 shadow-[0_-2px_10px_rgba(255,105,180,0.2)]';
default:
return 'bg-black/80 border-t border-neon-blue/30';
}
};
return (
<>
{/* 하드웨어 오류 표시 배너 - 화면 중앙 상단에 크게 표시 */}
@@ -94,8 +136,8 @@ export const Footer: React.FC<FooterProps> = ({ isHostConnected, robotTarget })
</div>
)}
<footer className="absolute bottom-0 left-0 right-0 h-10 bg-black/80 border-t border-neon-blue/30 flex items-center px-6 justify-between z-40 backdrop-blur text-xs font-mono text-slate-400">
<div className="flex gap-4">
<footer className={`absolute bottom-0 left-0 right-0 h-10 ${getFooterBgClass()} flex items-center px-6 justify-between z-40 backdrop-blur text-xs font-mono`}>
<div className="flex gap-4 items-center">
{/* H/W 상태 표시 (윈폼 HWState와 동일) */}
{hwStatus.map((hw) => {
const colors = getStatusColor(hw.status);
@@ -112,7 +154,83 @@ export const Footer: React.FC<FooterProps> = ({ isHostConnected, robotTarget })
<span className={`font-bold ${isHostConnected ? 'text-green-400' : 'text-red-400'}`}>HOST</span>
</div>
</div>
<div className="flex gap-8 text-neon-blue">
{/* 중앙: 테마 선택 버튼 */}
<div className="relative theme-selector">
<button
onClick={(e) => {
e.stopPropagation();
setShowThemeSelector(!showThemeSelector);
}}
className={`flex items-center gap-2 px-3 py-1 rounded transition-all ${
themeName === 'windows-classic'
? 'bg-[#c0c0c0] border-2 border-outset hover:bg-[#d0d0d0]'
: 'hover:bg-white/10 text-slate-400 hover:text-white'
}`}
style={{ color: themeName !== 'windows-classic' ? theme.colors.primary : undefined }}
title="Change Theme"
>
<Palette className="w-4 h-4" />
<span className="text-[11px] font-bold">{theme.displayName}</span>
<ChevronUp className={`w-3 h-3 transition-transform ${showThemeSelector ? 'rotate-180' : ''}`} />
</button>
{/* 테마 선택 팝업 */}
{showThemeSelector && (
<div className={`absolute bottom-full left-1/2 -translate-x-1/2 mb-2 min-w-[200px] rounded-lg shadow-2xl overflow-hidden animate-fadeIn ${
themeName === 'windows-classic'
? 'bg-[#c0c0c0] border-2 border-outset'
: 'bg-slate-900/95 border border-slate-700 backdrop-blur'
}`}>
<div className={`px-3 py-2 text-xs font-bold ${
themeName === 'windows-classic'
? 'bg-gradient-to-r from-[#000080] to-[#1084d0] text-white'
: 'border-b border-slate-700 text-slate-400'
}`}>
SELECT THEME
</div>
<div className="p-2 space-y-1">
{availableThemes.map((name) => {
const t = themes[name];
const isActive = name === themeName;
return (
<button
key={name}
onClick={() => {
setTheme(name);
setShowThemeSelector(false);
}}
className={`w-full flex items-center gap-3 px-3 py-2 rounded text-left transition-all ${
themeName === 'windows-classic'
? `${isActive ? 'bg-[#000080] text-white' : 'hover:bg-[#d0d0d0] text-black'}`
: `${isActive ? 'bg-white/10 text-white' : 'hover:bg-white/5 text-slate-400 hover:text-white'}`
}`}
>
{/* 테마 미리보기 색상 */}
<div className="flex gap-1">
<div
className="w-3 h-3 rounded-full"
style={{ backgroundColor: t.colors.primary }}
></div>
<div
className="w-3 h-3 rounded-full"
style={{ backgroundColor: t.colors.secondary }}
></div>
</div>
<span className="text-xs font-medium">{t.displayName}</span>
{isActive && (
<span className="ml-auto text-[10px]" style={{ color: t.colors.primary }}></span>
)}
</button>
);
})}
</div>
</div>
)}
</div>
{/* 우측: 로봇 위치 */}
<div className="flex gap-8" style={{ color: theme.colors.primary }}>
<span>POS.X: {robotTarget.x.toFixed(3)}</span>
<span>POS.Y: {robotTarget.y.toFixed(3)}</span>
<span>POS.Z: {robotTarget.z.toFixed(3)}</span>