+ {/* Animated Background - only for themes with effects */}
+ {theme.effects.gridBg && (
+ <>
+
+
+ >
+ )}
+
+ {/* Matrix theme special background */}
+ {themeName === 'matrix' && (
+
+ )}
+
+ {/* Industrial theme background */}
+ {themeName === 'industrial' && (
+
+ )}
+
+ {/* Dark Modern gradient */}
+ {themeName === 'dark-modern' && (
+
+ )}
+
+ {/* Otaku theme background - 다크 퍼플 그라데이션 + 별 효과 */}
+ {themeName === 'otaku' && (
+
+ )}
+
+ {/* Pink Pink theme background - 파스텔 핑크 그라데이션 */}
+ {themeName === 'pink-pink' && (
+
+ )}
+
+ {/* Scanlines - only for themes with the effect */}
+ {theme.effects.scanlines && (
+
+ )}
{/* LOADING OVERLAY */}
{isLoading && (
SYSTEM INITIALIZING
-
ESTABLISHING CONNECTION...
+
ESTABLISHING CONNECTION...
)}
diff --git a/FrontEnd/contexts/ThemeContext.tsx b/FrontEnd/contexts/ThemeContext.tsx
new file mode 100644
index 0000000..6f27865
--- /dev/null
+++ b/FrontEnd/contexts/ThemeContext.tsx
@@ -0,0 +1,320 @@
+import React, { createContext, useContext, useState, useEffect, ReactNode } from 'react';
+
+// Theme types
+export type ThemeName = 'cyberpunk' | 'windows-classic' | 'dark-modern' | 'matrix' | 'industrial' | 'otaku' | 'pink-pink';
+
+export interface ThemeColors {
+ primary: string;
+ primaryRgb: string;
+ secondary: string;
+ secondaryRgb: string;
+ accent: string;
+ success: string;
+ error: string;
+ warning: string;
+ bgPrimary: string;
+ bgSecondary: string;
+ bgTertiary: string;
+ textPrimary: string;
+ textSecondary: string;
+ border: string;
+}
+
+export interface Theme {
+ name: ThemeName;
+ displayName: string;
+ colors: ThemeColors;
+ effects: {
+ glow: boolean;
+ scanlines: boolean;
+ gridBg: boolean;
+ animations: boolean;
+ glassMorphism: boolean;
+ };
+ borderRadius: string;
+ fontStyle: 'tech' | 'classic' | 'modern';
+}
+
+// Theme Presets
+export const themes: Record
= {
+ 'cyberpunk': {
+ name: 'cyberpunk',
+ displayName: 'Cyberpunk',
+ colors: {
+ primary: '#00f3ff',
+ primaryRgb: '0, 243, 255',
+ secondary: '#bc13fe',
+ secondaryRgb: '188, 19, 254',
+ accent: '#ff0099',
+ success: '#0aff00',
+ error: '#ff0055',
+ warning: '#ffe600',
+ bgPrimary: '#020617',
+ bgSecondary: '#0f172a',
+ bgTertiary: '#1e293b',
+ textPrimary: '#f1f5f9',
+ textSecondary: '#94a3b8',
+ border: 'rgba(0, 243, 255, 0.2)',
+ },
+ effects: {
+ glow: true,
+ scanlines: true,
+ gridBg: true,
+ animations: true,
+ glassMorphism: true,
+ },
+ borderRadius: '0px',
+ fontStyle: 'tech',
+ },
+ 'windows-classic': {
+ name: 'windows-classic',
+ displayName: 'Windows Classic',
+ colors: {
+ primary: '#000080',
+ primaryRgb: '0, 0, 128',
+ secondary: '#008080',
+ secondaryRgb: '0, 128, 128',
+ accent: '#800000',
+ success: '#008000',
+ error: '#ff0000',
+ warning: '#808000',
+ bgPrimary: '#c0c0c0',
+ bgSecondary: '#dfdfdf',
+ bgTertiary: '#ffffff',
+ textPrimary: '#000000',
+ textSecondary: '#404040',
+ border: '#808080',
+ },
+ effects: {
+ glow: false,
+ scanlines: false,
+ gridBg: false,
+ animations: false,
+ glassMorphism: false,
+ },
+ borderRadius: '0px',
+ fontStyle: 'classic',
+ },
+ 'dark-modern': {
+ name: 'dark-modern',
+ displayName: 'Dark Modern',
+ colors: {
+ primary: '#3b82f6',
+ primaryRgb: '59, 130, 246',
+ secondary: '#8b5cf6',
+ secondaryRgb: '139, 92, 246',
+ accent: '#ec4899',
+ success: '#22c55e',
+ error: '#ef4444',
+ warning: '#f59e0b',
+ bgPrimary: '#09090b',
+ bgSecondary: '#18181b',
+ bgTertiary: '#27272a',
+ textPrimary: '#fafafa',
+ textSecondary: '#a1a1aa',
+ border: 'rgba(63, 63, 70, 0.5)',
+ },
+ effects: {
+ glow: false,
+ scanlines: false,
+ gridBg: false,
+ animations: true,
+ glassMorphism: true,
+ },
+ borderRadius: '8px',
+ fontStyle: 'modern',
+ },
+ 'matrix': {
+ name: 'matrix',
+ displayName: 'Matrix',
+ colors: {
+ primary: '#00ff00',
+ primaryRgb: '0, 255, 0',
+ secondary: '#00cc00',
+ secondaryRgb: '0, 204, 0',
+ accent: '#00ff00',
+ success: '#00ff00',
+ error: '#ff0000',
+ warning: '#ffff00',
+ bgPrimary: '#000000',
+ bgSecondary: '#0a0a0a',
+ bgTertiary: '#141414',
+ textPrimary: '#00ff00',
+ textSecondary: '#00aa00',
+ border: 'rgba(0, 255, 0, 0.3)',
+ },
+ effects: {
+ glow: true,
+ scanlines: true,
+ gridBg: false,
+ animations: true,
+ glassMorphism: false,
+ },
+ borderRadius: '0px',
+ fontStyle: 'tech',
+ },
+ 'industrial': {
+ name: 'industrial',
+ displayName: 'Industrial',
+ colors: {
+ primary: '#f97316',
+ primaryRgb: '249, 115, 22',
+ secondary: '#eab308',
+ secondaryRgb: '234, 179, 8',
+ accent: '#dc2626',
+ success: '#16a34a',
+ error: '#dc2626',
+ warning: '#eab308',
+ bgPrimary: '#1c1917',
+ bgSecondary: '#292524',
+ bgTertiary: '#44403c',
+ textPrimary: '#fafaf9',
+ textSecondary: '#a8a29e',
+ border: 'rgba(249, 115, 22, 0.3)',
+ },
+ effects: {
+ glow: true,
+ scanlines: false,
+ gridBg: false,
+ animations: true,
+ glassMorphism: false,
+ },
+ borderRadius: '4px',
+ fontStyle: 'tech',
+ },
+ 'otaku': {
+ name: 'otaku',
+ displayName: 'Otaku Mode',
+ colors: {
+ primary: '#ff6b9d', // 애니메이션 핑크
+ primaryRgb: '255, 107, 157',
+ secondary: '#c084fc', // 보라색
+ secondaryRgb: '192, 132, 252',
+ accent: '#fbbf24', // 골드 (별/하이라이트)
+ success: '#4ade80', // 밝은 그린
+ error: '#f87171', // 소프트 레드
+ warning: '#fcd34d', // 옐로우
+ bgPrimary: '#1a1025', // 다크 퍼플
+ bgSecondary: '#2d1f3d', // 미드 퍼플
+ bgTertiary: '#3d2a54', // 라이트 퍼플
+ textPrimary: '#fdf4ff', // 거의 화이트 (핑크톤)
+ textSecondary: '#d8b4fe', // 라벤더
+ border: 'rgba(255, 107, 157, 0.3)',
+ },
+ effects: {
+ glow: true,
+ scanlines: false,
+ gridBg: true,
+ animations: true,
+ glassMorphism: true,
+ },
+ borderRadius: '12px',
+ fontStyle: 'modern',
+ },
+ 'pink-pink': {
+ name: 'pink-pink',
+ displayName: 'Pink Pink',
+ colors: {
+ primary: '#ff69b4', // 핫핑크
+ primaryRgb: '255, 105, 180',
+ secondary: '#ff1493', // 딥핑크
+ secondaryRgb: '255, 20, 147',
+ accent: '#ffb6c1', // 라이트핑크
+ success: '#98fb98', // 페일그린
+ error: '#ff6b6b', // 코랄레드
+ warning: '#ffa07a', // 라이트살몬
+ bgPrimary: '#fff0f5', // 라벤더블러쉬 (밝은 배경)
+ bgSecondary: '#ffe4e9', // 미스티로즈
+ bgTertiary: '#ffccd5', // 핑크
+ textPrimary: '#8b008b', // 다크마젠타
+ textSecondary: '#c71585', // 미디엄바이올렛레드
+ border: 'rgba(255, 105, 180, 0.4)',
+ },
+ effects: {
+ glow: true,
+ scanlines: false,
+ gridBg: false,
+ animations: true,
+ glassMorphism: true,
+ },
+ borderRadius: '16px',
+ fontStyle: 'modern',
+ },
+};
+
+interface ThemeContextType {
+ theme: Theme;
+ themeName: ThemeName;
+ setTheme: (name: ThemeName) => void;
+ availableThemes: ThemeName[];
+}
+
+const ThemeContext = createContext(undefined);
+
+export const useTheme = () => {
+ const context = useContext(ThemeContext);
+ if (!context) {
+ throw new Error('useTheme must be used within ThemeProvider');
+ }
+ return context;
+};
+
+interface ThemeProviderProps {
+ children: ReactNode;
+}
+
+export const ThemeProvider: React.FC = ({ children }) => {
+ const [themeName, setThemeName] = useState(() => {
+ // Load from localStorage on initial render
+ const saved = localStorage.getItem('app-theme');
+ return (saved as ThemeName) || 'cyberpunk';
+ });
+
+ const theme = themes[themeName];
+
+ // Apply CSS variables when theme changes
+ useEffect(() => {
+ const root = document.documentElement;
+ const colors = theme.colors;
+
+ // Set CSS variables
+ root.style.setProperty('--color-primary', colors.primary);
+ root.style.setProperty('--color-primary-rgb', colors.primaryRgb);
+ root.style.setProperty('--color-secondary', colors.secondary);
+ root.style.setProperty('--color-secondary-rgb', colors.secondaryRgb);
+ root.style.setProperty('--color-accent', colors.accent);
+ root.style.setProperty('--color-success', colors.success);
+ root.style.setProperty('--color-error', colors.error);
+ root.style.setProperty('--color-warning', colors.warning);
+ root.style.setProperty('--color-bg-primary', colors.bgPrimary);
+ root.style.setProperty('--color-bg-secondary', colors.bgSecondary);
+ root.style.setProperty('--color-bg-tertiary', colors.bgTertiary);
+ root.style.setProperty('--color-text-primary', colors.textPrimary);
+ root.style.setProperty('--color-text-secondary', colors.textSecondary);
+ root.style.setProperty('--color-border', colors.border);
+ root.style.setProperty('--border-radius', theme.borderRadius);
+
+ // Set data attribute for theme-specific CSS
+ root.setAttribute('data-theme', themeName);
+
+ // Save to localStorage
+ localStorage.setItem('app-theme', themeName);
+ }, [theme, themeName]);
+
+ const setTheme = (name: ThemeName) => {
+ setThemeName(name);
+ };
+
+ return (
+
+ {children}
+
+ );
+};
diff --git a/FrontEnd/index.css b/FrontEnd/index.css
index 5a2b186..d0049ce 100644
--- a/FrontEnd/index.css
+++ b/FrontEnd/index.css
@@ -2,7 +2,31 @@
@tailwind components;
@tailwind utilities;
-/* Custom Scrollbar */
+/* ========================================
+ CSS Variables for Theming
+ ======================================== */
+:root {
+ /* Default (Cyberpunk) theme */
+ --color-primary: #00f3ff;
+ --color-primary-rgb: 0, 243, 255;
+ --color-secondary: #bc13fe;
+ --color-secondary-rgb: 188, 19, 254;
+ --color-accent: #ff0099;
+ --color-success: #0aff00;
+ --color-error: #ff0055;
+ --color-warning: #ffe600;
+ --color-bg-primary: #020617;
+ --color-bg-secondary: #0f172a;
+ --color-bg-tertiary: #1e293b;
+ --color-text-primary: #f1f5f9;
+ --color-text-secondary: #94a3b8;
+ --color-border: rgba(0, 243, 255, 0.2);
+ --border-radius: 0px;
+}
+
+/* ========================================
+ Custom Scrollbar (Theme-aware)
+ ======================================== */
::-webkit-scrollbar {
width: 4px;
height: 4px;
@@ -13,25 +37,29 @@
}
::-webkit-scrollbar-thumb {
- background: rgba(0, 243, 255, 0.3);
+ background: rgba(var(--color-primary-rgb), 0.3);
border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
- background: rgba(0, 243, 255, 0.6);
+ background: rgba(var(--color-primary-rgb), 0.6);
}
-/* Holographic Glass */
+/* ========================================
+ Theme: Cyberpunk (Default)
+ ======================================== */
+[data-theme="cyberpunk"] .glass-holo,
.glass-holo {
background: linear-gradient(135deg, rgba(10, 15, 30, 0.7) 0%, rgba(20, 30, 50, 0.5) 100%);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
- border: 1px solid rgba(0, 243, 255, 0.1);
+ border: 1px solid rgba(var(--color-primary-rgb), 0.1);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
position: relative;
overflow: hidden;
}
+[data-theme="cyberpunk"] .glass-holo::before,
.glass-holo::before {
content: '';
position: absolute;
@@ -39,43 +67,49 @@
left: 0;
right: 0;
height: 1px;
- background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.5), transparent);
+ background: linear-gradient(90deg, transparent, rgba(var(--color-primary-rgb), 0.5), transparent);
}
/* Active Element */
.glass-active {
- background: rgba(0, 243, 255, 0.1);
- border: 1px solid rgba(0, 243, 255, 0.4);
- box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
+ background: rgba(var(--color-primary-rgb), 0.1);
+ border: 1px solid rgba(var(--color-primary-rgb), 0.4);
+ box-shadow: 0 0 15px rgba(var(--color-primary-rgb), 0.2);
}
/* Text Glows */
.text-glow-blue {
- color: #00f3ff;
- text-shadow: 0 0 8px rgba(0, 243, 255, 0.6);
+ color: var(--color-primary);
+ text-shadow: 0 0 8px rgba(var(--color-primary-rgb), 0.6);
}
.text-glow-purple {
- color: #bc13fe;
- text-shadow: 0 0 8px rgba(188, 19, 254, 0.6);
+ color: var(--color-secondary);
+ text-shadow: 0 0 8px rgba(var(--color-secondary-rgb), 0.6);
}
.text-glow-red {
- color: #ff0055;
+ color: var(--color-error);
text-shadow: 0 0 8px rgba(255, 0, 85, 0.6);
}
.text-glow-green {
- color: #0aff00;
+ color: var(--color-success);
text-shadow: 0 0 8px rgba(10, 255, 0, 0.6);
}
+/* Primary text glow (theme-aware) */
+.text-glow-primary {
+ color: var(--color-primary);
+ text-shadow: 0 0 8px rgba(var(--color-primary-rgb), 0.6);
+}
+
/* Grid Background */
.grid-bg {
background-size: 50px 50px;
background-image:
- linear-gradient(to right, rgba(0, 243, 255, 0.05) 1px, transparent 1px),
- linear-gradient(to bottom, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
+ linear-gradient(to right, rgba(var(--color-primary-rgb), 0.05) 1px, transparent 1px),
+ linear-gradient(to bottom, rgba(var(--color-primary-rgb), 0.05) 1px, transparent 1px);
mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}
@@ -105,4 +139,390 @@
100% 100%,
0 100%,
0 10px);
-}
\ No newline at end of file
+}
+
+/* ========================================
+ Theme: Windows Classic
+ ======================================== */
+[data-theme="windows-classic"] {
+ font-family: 'MS Sans Serif', 'Segoe UI', Tahoma, sans-serif !important;
+}
+
+[data-theme="windows-classic"] .glass-holo {
+ background: #c0c0c0;
+ backdrop-filter: none;
+ -webkit-backdrop-filter: none;
+ border: 2px outset #dfdfdf;
+ box-shadow: inset -1px -1px 0 #808080, inset 1px 1px 0 #ffffff;
+ border-radius: 0;
+}
+
+[data-theme="windows-classic"] .glass-holo::before {
+ display: none;
+}
+
+[data-theme="windows-classic"] .text-glow-blue,
+[data-theme="windows-classic"] .text-glow-primary {
+ color: #000080;
+ text-shadow: none;
+}
+
+[data-theme="windows-classic"] .text-glow-green {
+ color: #008000;
+ text-shadow: none;
+}
+
+[data-theme="windows-classic"] .text-glow-red {
+ color: #ff0000;
+ text-shadow: none;
+}
+
+[data-theme="windows-classic"] .grid-bg,
+[data-theme="windows-classic"] .scanlines {
+ display: none;
+}
+
+/* Windows Classic Button Style */
+[data-theme="windows-classic"] .win-button {
+ background: #c0c0c0;
+ border: 2px outset #dfdfdf;
+ box-shadow: inset -1px -1px 0 #808080, inset 1px 1px 0 #ffffff;
+ padding: 4px 16px;
+ font-family: 'MS Sans Serif', Tahoma, sans-serif;
+ font-size: 11px;
+}
+
+[data-theme="windows-classic"] .win-button:active {
+ border: 2px inset #808080;
+ box-shadow: inset 1px 1px 0 #808080, inset -1px -1px 0 #ffffff;
+}
+
+/* Windows Classic Title Bar */
+[data-theme="windows-classic"] .win-titlebar {
+ background: linear-gradient(to right, #000080, #1084d0);
+ color: white;
+ font-weight: bold;
+ padding: 2px 4px;
+}
+
+/* Windows Classic Input */
+[data-theme="windows-classic"] input,
+[data-theme="windows-classic"] select {
+ background: white;
+ border: 2px inset #808080;
+ padding: 2px 4px;
+}
+
+/* ========================================
+ Theme: Dark Modern
+ ======================================== */
+[data-theme="dark-modern"] .glass-holo {
+ background: rgba(24, 24, 27, 0.8);
+ backdrop-filter: blur(16px);
+ -webkit-backdrop-filter: blur(16px);
+ border: 1px solid rgba(63, 63, 70, 0.5);
+ box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
+ border-radius: 8px;
+}
+
+[data-theme="dark-modern"] .glass-holo::before {
+ display: none;
+}
+
+[data-theme="dark-modern"] .text-glow-blue,
+[data-theme="dark-modern"] .text-glow-primary {
+ color: #3b82f6;
+ text-shadow: none;
+}
+
+[data-theme="dark-modern"] .text-glow-green {
+ color: #22c55e;
+ text-shadow: none;
+}
+
+[data-theme="dark-modern"] .text-glow-red {
+ color: #ef4444;
+ text-shadow: none;
+}
+
+[data-theme="dark-modern"] .grid-bg,
+[data-theme="dark-modern"] .scanlines {
+ display: none;
+}
+
+[data-theme="dark-modern"] .clip-tech,
+[data-theme="dark-modern"] .clip-tech-inv {
+ clip-path: none;
+ border-radius: 8px;
+}
+
+/* ========================================
+ Theme: Matrix
+ ======================================== */
+[data-theme="matrix"] .glass-holo {
+ background: rgba(0, 0, 0, 0.9);
+ backdrop-filter: none;
+ border: 1px solid rgba(0, 255, 0, 0.3);
+ box-shadow: 0 0 20px rgba(0, 255, 0, 0.1), inset 0 0 20px rgba(0, 255, 0, 0.05);
+}
+
+[data-theme="matrix"] .glass-holo::before {
+ background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.5), transparent);
+}
+
+[data-theme="matrix"] .text-glow-blue,
+[data-theme="matrix"] .text-glow-primary {
+ color: #00ff00;
+ text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
+}
+
+[data-theme="matrix"] .text-glow-green {
+ color: #00ff00;
+ text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
+}
+
+[data-theme="matrix"] .text-glow-red {
+ color: #ff0000;
+ text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
+}
+
+[data-theme="matrix"] body {
+ background: #000000 !important;
+}
+
+[data-theme="matrix"] .grid-bg {
+ display: none;
+}
+
+/* Matrix rain effect - optional */
+[data-theme="matrix"] .scanlines {
+ background: linear-gradient(to bottom,
+ rgba(0, 255, 0, 0),
+ rgba(0, 255, 0, 0) 50%,
+ rgba(0, 0, 0, 0.3) 50%,
+ rgba(0, 0, 0, 0.3));
+ background-size: 100% 3px;
+}
+
+/* ========================================
+ Theme: Industrial
+ ======================================== */
+[data-theme="industrial"] .glass-holo {
+ background: rgba(28, 25, 23, 0.95);
+ backdrop-filter: none;
+ border: 2px solid rgba(249, 115, 22, 0.3);
+ box-shadow: 0 0 15px rgba(249, 115, 22, 0.1);
+ border-radius: 4px;
+}
+
+[data-theme="industrial"] .glass-holo::before {
+ background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
+}
+
+[data-theme="industrial"] .text-glow-blue,
+[data-theme="industrial"] .text-glow-primary {
+ color: #f97316;
+ text-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
+}
+
+[data-theme="industrial"] .text-glow-green {
+ color: #16a34a;
+ text-shadow: 0 0 8px rgba(22, 163, 74, 0.6);
+}
+
+[data-theme="industrial"] .text-glow-red {
+ color: #dc2626;
+ text-shadow: 0 0 8px rgba(220, 38, 38, 0.6);
+}
+
+[data-theme="industrial"] .grid-bg,
+[data-theme="industrial"] .scanlines {
+ display: none;
+}
+
+/* Industrial warning stripes */
+[data-theme="industrial"] .industrial-stripe {
+ background: repeating-linear-gradient(
+ 45deg,
+ #f97316,
+ #f97316 10px,
+ #000000 10px,
+ #000000 20px
+ );
+}
+
+/* ========================================
+ Theme: Otaku Mode (애니메이션/오타쿠 스타일)
+ ======================================== */
+[data-theme="otaku"] .glass-holo {
+ background: linear-gradient(135deg, rgba(26, 16, 37, 0.85) 0%, rgba(45, 31, 61, 0.75) 100%);
+ backdrop-filter: blur(16px);
+ -webkit-backdrop-filter: blur(16px);
+ border: 2px solid rgba(255, 107, 157, 0.3);
+ box-shadow:
+ 0 0 30px rgba(255, 107, 157, 0.15),
+ 0 0 60px rgba(192, 132, 252, 0.1),
+ inset 0 1px 0 rgba(255, 255, 255, 0.1);
+ border-radius: 12px;
+}
+
+[data-theme="otaku"] .glass-holo::before {
+ background: linear-gradient(90deg,
+ transparent,
+ rgba(255, 107, 157, 0.6),
+ rgba(192, 132, 252, 0.6),
+ transparent);
+}
+
+[data-theme="otaku"] .text-glow-blue,
+[data-theme="otaku"] .text-glow-primary {
+ color: #ff6b9d;
+ text-shadow:
+ 0 0 10px rgba(255, 107, 157, 0.8),
+ 0 0 20px rgba(255, 107, 157, 0.4),
+ 0 0 30px rgba(192, 132, 252, 0.3);
+}
+
+[data-theme="otaku"] .text-glow-green {
+ color: #4ade80;
+ text-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
+}
+
+[data-theme="otaku"] .text-glow-red {
+ color: #f87171;
+ text-shadow: 0 0 10px rgba(248, 113, 113, 0.6);
+}
+
+/* Otaku 특수 효과 - 반짝이는 별 그리드 */
+[data-theme="otaku"] .grid-bg {
+ background-size: 30px 30px;
+ background-image:
+ radial-gradient(circle, rgba(255, 107, 157, 0.15) 1px, transparent 1px),
+ radial-gradient(circle, rgba(192, 132, 252, 0.1) 1px, transparent 1px);
+ background-position: 0 0, 15px 15px;
+ mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
+}
+
+[data-theme="otaku"] .scanlines {
+ display: none;
+}
+
+/* 귀여운 라운드 버튼 스타일 */
+[data-theme="otaku"] .clip-tech,
+[data-theme="otaku"] .clip-tech-inv {
+ clip-path: none;
+ border-radius: 12px;
+}
+
+/* ========================================
+ Theme: Pink Pink (귀여운 파스텔 핑크)
+ ======================================== */
+[data-theme="pink-pink"] .glass-holo {
+ background: linear-gradient(135deg, rgba(255, 240, 245, 0.95) 0%, rgba(255, 228, 233, 0.9) 100%);
+ backdrop-filter: blur(12px);
+ -webkit-backdrop-filter: blur(12px);
+ border: 2px solid rgba(255, 105, 180, 0.4);
+ box-shadow:
+ 0 4px 20px rgba(255, 105, 180, 0.2),
+ 0 0 40px rgba(255, 20, 147, 0.1),
+ inset 0 2px 0 rgba(255, 255, 255, 0.8);
+ border-radius: 16px;
+}
+
+[data-theme="pink-pink"] .glass-holo::before {
+ background: linear-gradient(90deg,
+ transparent,
+ rgba(255, 105, 180, 0.5),
+ rgba(255, 20, 147, 0.5),
+ transparent);
+ height: 2px;
+}
+
+[data-theme="pink-pink"] .text-glow-blue,
+[data-theme="pink-pink"] .text-glow-primary {
+ color: #ff69b4;
+ text-shadow:
+ 0 0 8px rgba(255, 105, 180, 0.5),
+ 0 0 16px rgba(255, 20, 147, 0.3);
+}
+
+[data-theme="pink-pink"] .text-glow-green {
+ color: #2e8b57;
+ text-shadow: 0 0 8px rgba(46, 139, 87, 0.4);
+}
+
+[data-theme="pink-pink"] .text-glow-red {
+ color: #ff6b6b;
+ text-shadow: 0 0 8px rgba(255, 107, 107, 0.5);
+}
+
+[data-theme="pink-pink"] .grid-bg,
+[data-theme="pink-pink"] .scanlines {
+ display: none;
+}
+
+/* 핑크 테마 특수 - 하트 패턴 배경 (선택적) */
+[data-theme="pink-pink"] .pink-hearts {
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23ff69b4' fill-opacity='0.1' d='M10 3.5c1.5-2 4-2 5.5 0s1.5 5.5-5.5 10c-7-4.5-7-8-5.5-10s4-2 5.5 0z'/%3E%3C/svg%3E");
+}
+
+/* 핑크 테마 버튼 스타일 */
+[data-theme="pink-pink"] .clip-tech,
+[data-theme="pink-pink"] .clip-tech-inv {
+ clip-path: none;
+ border-radius: 16px;
+}
+
+/* 핑크 테마 스크롤바 */
+[data-theme="pink-pink"]::-webkit-scrollbar-thumb {
+ background: rgba(255, 105, 180, 0.5);
+ border-radius: 4px;
+}
+
+[data-theme="pink-pink"]::-webkit-scrollbar-thumb:hover {
+ background: rgba(255, 105, 180, 0.8);
+}
+
+/* ========================================
+ Theme-aware utility classes
+ ======================================== */
+.theme-bg-primary {
+ background-color: var(--color-bg-primary);
+}
+
+.theme-bg-secondary {
+ background-color: var(--color-bg-secondary);
+}
+
+.theme-bg-tertiary {
+ background-color: var(--color-bg-tertiary);
+}
+
+.theme-text-primary {
+ color: var(--color-text-primary);
+}
+
+.theme-text-secondary {
+ color: var(--color-text-secondary);
+}
+
+.theme-border {
+ border-color: var(--color-border);
+}
+
+.theme-accent {
+ color: var(--color-primary);
+}
+
+.theme-glow {
+ box-shadow: 0 0 20px rgba(var(--color-primary-rgb), 0.3);
+}
+
+/* ========================================
+ Disable effects for non-effect themes
+ ======================================== */
+[data-theme="windows-classic"] .animate-pulse,
+[data-theme="windows-classic"] .animate-glow,
+[data-theme="windows-classic"] .animate-gradient {
+ animation: none !important;
+}
diff --git a/FrontEnd/tailwind.config.js b/FrontEnd/tailwind.config.js
index 43448f9..121cdeb 100644
--- a/FrontEnd/tailwind.config.js
+++ b/FrontEnd/tailwind.config.js
@@ -8,14 +8,15 @@ export default {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
- mono: ['Rajdhani', 'monospace'],
+ mono: ['Rajdhani', 'monospace'],
tech: ['Rajdhani', 'sans-serif'],
+ classic: ['Segoe UI', 'Tahoma', 'sans-serif'],
},
colors: {
slate: {
- 850: '#1e293b',
- 900: '#0f172a',
- 950: '#020617',
+ 850: '#1e293b',
+ 900: '#0f172a',
+ 950: '#020617',
},
neon: {
blue: '#00f3ff',
@@ -23,6 +24,21 @@ export default {
pink: '#ff0099',
green: '#0aff00',
yellow: '#ffe600',
+ },
+ // Theme-aware colors using CSS variables
+ theme: {
+ primary: 'var(--color-primary)',
+ secondary: 'var(--color-secondary)',
+ accent: 'var(--color-accent)',
+ success: 'var(--color-success)',
+ error: 'var(--color-error)',
+ warning: 'var(--color-warning)',
+ 'bg-primary': 'var(--color-bg-primary)',
+ 'bg-secondary': 'var(--color-bg-secondary)',
+ 'bg-tertiary': 'var(--color-bg-tertiary)',
+ 'text-primary': 'var(--color-text-primary)',
+ 'text-secondary': 'var(--color-text-secondary)',
+ border: 'var(--color-border)',
}
},
boxShadow: {
@@ -30,6 +46,7 @@ export default {
'glow-purple': '0 0 20px rgba(188, 19, 254, 0.4), inset 0 0 10px rgba(188, 19, 254, 0.1)',
'glow-red': '0 0 30px rgba(255, 0, 0, 0.5)',
'hologram': '0 0 15px rgba(6, 182, 212, 0.15), inset 0 0 20px rgba(6, 182, 212, 0.05)',
+ 'glow-primary': '0 0 20px rgba(var(--color-primary-rgb), 0.3), inset 0 0 10px rgba(var(--color-primary-rgb), 0.1)',
},
animation: {
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
@@ -41,8 +58,8 @@ export default {
},
keyframes: {
glow: {
- '0%': { boxShadow: '0 0 5px rgba(0, 243, 255, 0.2)' },
- '100%': { boxShadow: '0 0 20px rgba(0, 243, 255, 0.6), 0 0 10px rgba(0, 243, 255, 0.4)' },
+ '0%': { boxShadow: '0 0 5px rgba(var(--color-primary-rgb), 0.2)' },
+ '100%': { boxShadow: '0 0 20px rgba(var(--color-primary-rgb), 0.6), 0 0 10px rgba(var(--color-primary-rgb), 0.4)' },
},
gradient: {
'0%': { backgroundPosition: '0% 50%' },
@@ -57,8 +74,11 @@ export default {
'0%': { opacity: '0', transform: 'scale(0.95)' },
'100%': { opacity: '1', transform: 'scale(1)' },
}
+ },
+ borderRadius: {
+ 'theme': 'var(--border-radius)',
}
}
},
plugins: [],
-}
\ No newline at end of file
+}