diff -aur a/src/core/job.c b/src/core/job.c --- a/src/core/job.c 2012-08-22 14:42:40.048200957 +0100 +++ b/src/core/job.c 2012-08-22 14:44:52.244863741 +0100 @@ -567,7 +567,7 @@ case JOB_DONE: if (u->condition_result) - unit_status_printf(u, ANSI_HIGHLIGHT_GREEN_ON " OK " ANSI_HIGHLIGHT_OFF, format, unit_description(u)); + unit_status_printf(u, ANSI_HIGHLIGHT_BLUE_ON " OK " ANSI_HIGHLIGHT_OFF, format, unit_description(u)); break; case JOB_FAILED: @@ -601,7 +601,7 @@ case JOB_DONE: case JOB_FAILED: - unit_status_printf(u, ANSI_HIGHLIGHT_GREEN_ON " OK " ANSI_HIGHLIGHT_OFF, format, unit_description(u)); + unit_status_printf(u, ANSI_HIGHLIGHT_BLUE_ON " OK " ANSI_HIGHLIGHT_OFF, format, unit_description(u)); break; default: diff -aur a/src/shared/util.h b/src/shared/util.h --- a/src/shared/util.h 2012-08-22 14:53:46.044848012 +0100 +++ b/src/shared/util.h 2012-08-22 14:55:25.274845145 +0100 @@ -79,6 +79,7 @@ #define ANSI_HIGHLIGHT_ON "\x1B[1;39m" #define ANSI_HIGHLIGHT_RED_ON "\x1B[1;31m" #define ANSI_HIGHLIGHT_GREEN_ON "\x1B[1;32m" +#define ANSI_HIGHLIGHT_BLUE_ON "\x1B[1;34m" #define ANSI_HIGHLIGHT_YELLOW_ON "\x1B[1;33m" #define ANSI_HIGHLIGHT_OFF "\x1B[0m"