refactor: 전체 프론트엔드 하드코딩 색상 → CSS 변수 일괄 치환

447+ 파일, 4500+ 줄 변경:
- gray-* → border/bg-muted/text-foreground/text-muted-foreground
- blue-* → primary/ring
- red-* → destructive
- green-* → emerald (일관성)
- indigo-* → primary
- yellow/orange → amber (통일)
- dark mode 변형도 시맨틱 토큰으로 변환

Made-with: Cursor
This commit is contained in:
DDD1542
2026-03-09 14:31:59 +09:00
parent d967cf0a0d
commit 4f10b5e42d
447 changed files with 4520 additions and 4520 deletions

View File

@@ -51,8 +51,8 @@ export default function DataFlowEditPage() {
return (
<div className="flex h-64 items-center justify-center">
<div className="text-center">
<div className="mx-auto mb-4 h-8 w-8 animate-spin rounded-full border-b-2 border-blue-600"></div>
<p className="text-gray-500"> ...</p>
<div className="mx-auto mb-4 h-8 w-8 animate-spin rounded-full border-b-2 border-primary"></div>
<p className="text-muted-foreground"> ...</p>
</div>
</div>
);
@@ -68,16 +68,16 @@ export default function DataFlowEditPage() {
<span></span>
</Button>
<div>
<h1 className="text-2xl font-bold text-gray-900">📊 </h1>
<p className="mt-1 text-gray-600">
<span className="font-medium text-blue-600">{diagramName}</span>
<h1 className="text-2xl font-bold text-foreground">📊 </h1>
<p className="mt-1 text-muted-foreground">
<span className="font-medium text-primary">{diagramName}</span>
</p>
</div>
</div>
</div>
{/* 데이터플로우 디자이너 */}
<div className="rounded-lg border border-gray-200 bg-white">
<div className="rounded-lg border border-border bg-white">
<DataFlowDesigner
key={diagramId}
selectedDiagram={diagramName}

View File

@@ -17,8 +17,8 @@ export default function NodeEditorPage() {
}, [router]);
return (
<div className="flex h-screen items-center justify-center bg-gray-50">
<div className="text-gray-500"> ...</div>
<div className="flex h-screen items-center justify-center bg-muted">
<div className="text-muted-foreground"> ...</div>
</div>
);
}