From 5cc2e006692e71bf037be83e138f94273b36d4da Mon Sep 17 00:00:00 2001
From: Mihai Moldovan <ionic@ionic.de>
Date: Wed, 22 Mar 2023 04:19:07 +0100
Subject: [PATCH] src/prompt-box.vala: darken red error message text color.

This improves the contrast considerably for the new static white
background.

Signed-off-by: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
---
 src/prompt-box.vala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
-- 
2.39.2

