onYellow static method
Shorthand for black text on bright yellow background.
Example:
print(AnsiOutput.onYellow("⚠ Warning"));
Implementation
static String onYellow(String text, [AnsiColor fg = AnsiColor.BLACK]) =>
onBackground(AnsiColor.BG_BRIGHT_YELLOW, text, fg);