chore(cleanup): 미사용 코드 정리 및 레거시 파일 삭제

This commit is contained in:
2026-03-03 19:41:31 +09:00
parent be16153bef
commit 60cd093308
80 changed files with 0 additions and 3270 deletions

View File

@@ -1,20 +0,0 @@
export type AppHubVisualMode = 'light' | 'cinematic';
export const DEFAULT_APP_HUB_VISUAL_MODE: AppHubVisualMode = 'cinematic';
export const APP_HUB_VISUAL_OPTIONS = [
{
id: 'light',
label: 'A안 · 라이트 감성',
description: '밝고 정돈된 무드',
},
{
id: 'cinematic',
label: 'B안 · 무드 시네마틱',
description: '깊고 몰입적인 무드',
},
] as const satisfies ReadonlyArray<{
id: AppHubVisualMode;
label: string;
description: string;
}>;

View File

@@ -1,20 +0,0 @@
/**
* VibeRoom 공통 색상 팔레트 (JS/TS 환경용)
*
* Tailwind CSS(globals.css)에 정의된 색상과 동일한 값을 가집니다.
* 이 파일은 Tailwind 클래스를 사용할 수 없는 곳(Canvas, Three.js 3D 객체, 차트 라이브러리 등)이나
* JS 로직 내에서 색상 코드가 직접 필요할 때 사용합니다.
*/
export const colors = {
brand: {
primary: '#63adf2', // 소프트 코발트 (핵심 액션, 포인트)
dark: '#304d6d', // 딥 네이비 (메인 텍스트, 무게감 있는 배경)
soft: '#a7cced', // 파스텔 스카이 (은은한 배경, 호버/체크마크)
},
base: {
background: '#f8fafc', // slate-50 (서비스 기본 배경)
white: '#ffffff',
}
} as const;
export type BrandColor = keyof typeof colors.brand;