diff --git a/lib/cli/cli.dart b/lib/cli/cli.dart index 5ca718f..684a15c 100644 --- a/lib/cli/cli.dart +++ b/lib/cli/cli.dart @@ -103,8 +103,12 @@ class CLI { static String style(String message, {Color? color, Color? background, Style? style}) { - return printer.getStyle(message, - color: color, background: background, style: style); + if (Platform.isWindows) { + return message; + } else { + return printer.getStyle(message, + color: color, background: background, style: style); + } } static final commandNameSpace = 18;