diff --git a/CHANGELOG.D/1752.feature b/CHANGELOG.D/1752.feature new file mode 100644 index 000000000..9dda60fbe --- /dev/null +++ b/CHANGELOG.D/1752.feature @@ -0,0 +1 @@ +Change the color scheme for job statuses. The yellow color is for the cancellation, cyan is for pending jobs. \ No newline at end of file diff --git a/neuromation/cli/formatters/jobs.py b/neuromation/cli/formatters/jobs.py index 385fe4ff4..7a9223975 100644 --- a/neuromation/cli/formatters/jobs.py +++ b/neuromation/cli/formatters/jobs.py @@ -26,12 +26,12 @@ COLORS = { - JobStatus.PENDING: "yellow", + JobStatus.PENDING: "cyan", JobStatus.RUNNING: "blue", JobStatus.SUCCEEDED: "green", - JobStatus.CANCELLED: "green", + JobStatus.CANCELLED: "yellow", JobStatus.FAILED: "red", - JobStatus.UNKNOWN: "yellow", + JobStatus.UNKNOWN: "bright_red", }