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