| 209 | |
| 210 | |
| 211 | void ANSI::colors4(uint8_t fgcolor, uint8_t bgcolor) { |
| 212 | print("\033["); |
| 213 | this->color4_code(fg_normal, fgcolor); |
| 214 | print(";"); |
| 215 | this->color4_code(bg_normal, bgcolor); |
| 216 | print("m"); |
| 217 | } |
| 218 | |
| 219 | |
| 220 | void ANSI::color8(uint8_t base, uint8_t color) { |