Create success-styled text
(text: &str)
| 120 | |
| 121 | /// Create success-styled text |
| 122 | pub fn success(text: &str) -> String { |
| 123 | format!("\x1b[{}m{}\x1b[0m", color_to_ansi_code(theme().status.success), text) |
| 124 | } |
| 125 | |
| 126 | // ===== Low-level crossterm command methods ===== |
| 127 | // These return crossterm commands for complex terminal operations |
no outgoing calls
no test coverage detected