Skip to content

Commit

Permalink
#218: Use 32m established color instead of 96m.
Browse files Browse the repository at this point in the history
  • Loading branch information
serundeputy committed Apr 11, 2020
1 parent a592209 commit d65cd94
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions commands/config/config_helpers.drush.inc
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
);
}
Expand Down

0 comments on commit d65cd94

Please sign in to comment.