Converts an ANSI color number to an RGB color.
(color: u8)
| 303 | |
| 304 | /// Converts an ANSI color number to an RGB color. |
| 305 | pub fn ansi_color_to_rgb(color: u8) -> RGB { |
| 306 | COLORS[(color as usize) % COLORS.len()] |
| 307 | } |
| 308 | |
| 309 | /// Converts an RGB color to an ANSI color number if there is an exact match. |
| 310 | /// |