From 5cc2e006692e71bf037be83e138f94273b36d4da Mon Sep 17 00:00:00 2001 From: Mihai Moldovan Date: Wed, 22 Mar 2023 04:19:07 +0100 Subject: src/prompt-box.vala: darken red error message text color. This improves the contrast considerably for the new static white background. --- src/prompt-box.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/prompt-box.vala b/src/prompt-box.vala index d925739..e1dc629 100644 --- a/src/prompt-box.vala +++ b/src/prompt-box.vala @@ -574,7 +574,7 @@ public class PromptBox : FadableBox Gdk.RGBA color = { 1.0f, 1.0f, 1.0f, 1.0f }; if (is_error) { - color.parse ("#df382c"); + color.parse ("#820900"); /* * Overriding the background color will look ugly, but at least -- cgit v1.2.3