statusbar: Use better color that works well with both light and dark themes (!17)

Improved fix for #26
This commit is contained in:
Yousuf Philips
2021-01-31 23:45:13 +01:00
committed by Andre Miranda
parent b919b5938c
commit a93616adfb

View File

@@ -149,7 +149,7 @@ xtm_process_statusbar_set_property (GObject *object, guint property_id, const GV
text = g_strdup_printf (_("Memory: %s"), statusbar->memory);
gtk_label_set_text (GTK_LABEL (statusbar->label_memory), text);
gtk_widget_set_tooltip_text (statusbar->label_memory, text);
gdk_rgba_parse (&color, "#c22b66");
gdk_rgba_parse (&color, "#cb386c");
gtk_widget_override_color (statusbar->label_memory, GTK_STATE_FLAG_NORMAL, &color);
g_free (text);
break;