diff --git a/commands/config/config_helpers.drush.inc b/commands/config/config_helpers.drush.inc index 8317bdf..0e72667 100644 --- a/commands/config/config_helpers.drush.inc +++ b/commands/config/config_helpers.drush.inc @@ -101,13 +101,14 @@ function backdrop_config_set() { drush_print_r("There was a problem setting the $setting setting: $e"); } // Pretty terminal font colors for the printed variables. - $print_file = "\033[96m" . $file . ".json\033[0m"; - $print_setting = "\033[96m" . $setting . "\033[0m"; - $print_value = "\033[96m" . $value . "\033[0m"; + $print_file = "\033[32m" . $file . ".json\033[0m"; + $print_setting = "\033[32m" . $setting . "\033[0m"; + $print_value = "\033[32m" . $value . "\033[0m"; drush_print_r( dt( - "\n\t\033[32mSuccess\033[0m - The $print_setting setting has been set to $print_value in the $print_file file." + "\n\t\033[32mSuccess:\033[0m" + . " The $print_setting setting has been set to $print_value in the" + . " $print_file file.\n" ) ); }