31 lines
901 B
TypeScript
31 lines
901 B
TypeScript
/**
|
|
* 디지털 트윈 3D 야드 - 공통 상수
|
|
*/
|
|
|
|
// 객체 타입별 색상 매핑 (HEX 코드)
|
|
export const OBJECT_COLORS: Record<string, string> = {
|
|
area: "#3b82f6", // 파란색
|
|
"location-bed": "#2563eb", // 진한 파란색
|
|
"location-stp": "#6b7280", // 회색
|
|
"location-temp": "#f59e0b", // 주황색
|
|
"location-dest": "#10b981", // 초록색
|
|
"crane-mobile": "#8b5cf6", // 보라색
|
|
rack: "#ef4444", // 빨간색
|
|
};
|
|
|
|
// Tailwind 색상 클래스 매핑 (아이콘용)
|
|
export const OBJECT_COLOR_CLASSES: Record<string, string> = {
|
|
area: "text-blue-500",
|
|
"location-bed": "text-blue-600",
|
|
"location-stp": "text-gray-500",
|
|
"location-temp": "text-orange-500",
|
|
"location-dest": "text-emerald-500",
|
|
"crane-mobile": "text-purple-500",
|
|
rack: "text-red-500",
|
|
};
|
|
|
|
// 기본 색상
|
|
export const DEFAULT_COLOR = "#3b82f6";
|
|
export const DEFAULT_COLOR_CLASS = "text-blue-500";
|
|
|