diff --git a/system/CLI/CLI.php b/system/CLI/CLI.php index bca5cb69814d..633d45d0c02e 100644 --- a/system/CLI/CLI.php +++ b/system/CLI/CLI.php @@ -238,13 +238,13 @@ 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]);