/** * Mission Control TUI custom styles. * Uses stronger dark orange / dark green tones than the default theme tokens. */ const ANSI_FG_RESET = "\x1b[39m"; const ANSI_STRIKE_ON = "\x1b[9m"; const ANSI_STRIKE_OFF = "\x1b[29m"; const DARK_GREEN = { r: 46, g: 125, b: 50 }; // #2E7D32 const DARK_ORANGE = { r: 198, g: 94, b: 0 }; // #C65E00 function rgb(text: string, color: { r: number; g: number; b: number }): string { return `\x1b[38;2;${color.r};${color.g};${color.b}m${text}${ANSI_FG_RESET}`; } export function missionSuccess(text: string): string { return rgb(text, DARK_GREEN); } export function missionWarning(text: string): string { return rgb(text, DARK_ORANGE); } export function strike(text: string): string { return `${ANSI_STRIKE_ON}${text}${ANSI_STRIKE_OFF}`; }