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

@@ -17,12 +17,12 @@ export default function MapPreviewComponent({ component }: MapPreviewComponentPr
const tableName = component.config?.dataSource?.tableName;
return (
<div className="flex h-full w-full items-center justify-center bg-gradient-to-br from-blue-50 to-indigo-50 border-2 border-dashed border-blue-300">
<div className="flex h-full w-full items-center justify-center bg-gradient-to-br from-primary/5 to-indigo-50 border-2 border-dashed border-primary/40">
<div className="text-center">
<Map className="mx-auto h-12 w-12 text-blue-600" />
<p className="mt-2 text-sm font-medium text-blue-900"> </p>
<Map className="mx-auto h-12 w-12 text-primary" />
<p className="mt-2 text-sm font-medium text-primary"> </p>
{tableName && (
<p className="mt-1 text-xs text-blue-600">: {tableName}</p>
<p className="mt-1 text-xs text-primary">: {tableName}</p>
)}
</div>
</div>