From 35e5373888716995a8799f274fd52b3884fcb1c2 Mon Sep 17 00:00:00 2001 From: Andre Miranda Date: Mon, 13 Jul 2020 20:36:16 -0300 Subject: [PATCH] statusbar: Use color with better contrast for dark themes --- src/process-statusbar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process-statusbar.c b/src/process-statusbar.c index 74e8544..c63465b 100644 --- a/src/process-statusbar.c +++ b/src/process-statusbar.c @@ -146,7 +146,7 @@ xtm_process_statusbar_set_property (GObject *object, guint property_id, const GV g_strlcpy(statusbar->memory, g_value_get_string (value), sizeof(statusbar->memory)); text = g_strdup_printf (_("Memory: %s"), statusbar->memory); gtk_label_set_text (GTK_LABEL (statusbar->label_memory), text); - gdk_rgba_parse (&color, "#ab1852"); + gdk_rgba_parse (&color, "#c22b66"); gtk_widget_override_color (statusbar->label_memory, GTK_STATE_NORMAL, &color); g_free (text); break;