Logs a tip message in green.
message
static String tip(String message, {bool error = true}) { String output = '{@green}[TIP] $message{@end}'; out(output, error: error); // Return for testing. return output; }