Create brand-styled text (primary brand color)
(text: &str)
| 105 | |
| 106 | /// Create brand-styled text (primary brand color) |
| 107 | pub fn brand(text: &str) -> String { |
| 108 | format!("\x1b[{}m{}\x1b[0m", color_to_ansi_code(theme().ui.primary_brand), text) |
| 109 | } |
| 110 | |
| 111 | /// Create primary-styled text (primary text color) |
| 112 | pub fn primary(text: &str) -> String { |