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 = { CRITICAL: '#ef4444', HIGH: '#f59e0b', MEDIUM: '#4f6ef7', LOW: '#22c55e', } export const STATUS_COLOR: Record = { RECEIVED: '#94a3b8', IN_PROGRESS: '#4f6ef7', PENDING_APPROVAL: '#f59e0b', COMPLETED: '#22c55e', FAILED_ROLLBACK: '#ef4444', REJECTED: '#dc2626', }