Prints the message in yellow using AnsiStyle.
void printYellow(Object? message) { final formatted = AnsiStyle.fgYellow.formatted(message); print(formatted); }