diff --git a/system/CLI/CLI.php b/system/CLI/CLI.php index 30d49bad5809..a028a6c4b0a3 100644 --- a/system/CLI/CLI.php +++ b/system/CLI/CLI.php @@ -244,14 +244,14 @@ public static function prompt(string $field, $options = null, $validation = null if (is_string($options)) { - $extraOutput = ' [' . static::color($options, 'white') . ']'; + $extraOutput = ' [' . static::color($options, 'green') . ']'; $default = $options; } if (is_array($options) && $options) { $opts = $options; - $extraOutputDefault = static::color($opts[0], 'white'); + $extraOutputDefault = static::color($opts[0], 'green'); unset($opts[0]);