From 665fd156d476563148015a174d8c695a1350bfa4 Mon Sep 17 00:00:00 2001 From: norly Date: Wed, 2 Oct 2013 15:42:39 +0200 Subject: Change named colors to hex values --- src/status/datetime.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/status/datetime.c') diff --git a/src/status/datetime.c b/src/status/datetime.c index d7d9d0a..304b858 100644 --- a/src/status/datetime.c +++ b/src/status/datetime.c @@ -19,7 +19,7 @@ void status_datetime(GlobalData *g) nows = time(NULL); if (nows == ((time_t) -1)) { - s.color = "red"; + s.color = "#FF0000"; // red s.text = "ERROR: DATETIME"; line_append_item(g, &s); @@ -35,7 +35,7 @@ void status_datetime(GlobalData *g) ); line_append_item(g, &s); - s.color = "grey"; + s.color = "#BEBEBE"; // grey snprintf(text, sizeof(text), "%d:%.2d" #ifdef SHOW_SECONDS -- cgit v1.2.3