[cli] Fix colors on light themes (#10577)

This commit is contained in:
Maksim Smolin
2020-09-04 10:45:27 -07:00
committed by GitHub
parent 786f12edfd
commit 02efa2549d
7 changed files with 68 additions and 21 deletions
+2 -2
View File
@@ -839,11 +839,11 @@ def stop(force, verbose, log_new_style, log_color):
if force:
cli_logger.verbose("Killed `{}` {} ", cf.bold(proc_string),
cf.gray("(via SIGKILL)"))
cf.dimmed("(via SIGKILL)"))
else:
cli_logger.verbose("Send termination request to `{}` {}",
cf.bold(proc_string),
cf.gray("(via SIGTERM)"))
cf.dimmed("(via SIGTERM)"))
total_stopped += 1
except psutil.NoSuchProcess: