zioinfo-mail/app/constants/Config.ts
DESKTOP-TKLFCPR\ython 11c670f2a0 refactor: 101.79.17.164 → zioinfo.co.kr 전체 도메인 변환 + Manager UI 배포
- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스)
- Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포
- 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-31 10:09:17 +09:00

36 lines
881 B
TypeScript

import Constants from 'expo-constants'
export const API_BASE = Constants.expoConfig?.extra?.guardiaApiUrl ?? 'https://zioinfo.co.kr:8443'
export const COLORS = {
primary: '#1a3a6b',
accent: '#4f6ef7',
light: '#e8ecff',
bg: '#f0f2f5',
card: '#ffffff',
border: '#e2e8f0',
text: '#1e293b',
muted: '#64748b',
success: '#22c55e',
warning: '#f59e0b',
danger: '#ef4444',
gnbBg: '#1a1d2e',
white: '#ffffff',
} as const
export const PRIORITY_COLOR: Record<string, string> = {
CRITICAL: '#ef4444',
HIGH: '#f59e0b',
MEDIUM: '#4f6ef7',
LOW: '#22c55e',
}
export const STATUS_COLOR: Record<string, string> = {
RECEIVED: '#94a3b8',
IN_PROGRESS: '#4f6ef7',
PENDING_APPROVAL: '#f59e0b',
COMPLETED: '#22c55e',
FAILED_ROLLBACK: '#ef4444',
REJECTED: '#dc2626',
}