diff options
author | Mihai Moldovan <ionic@ionic.de> | 2023-03-22 04:19:07 +0100 |
---|---|---|
committer | Mihai Moldovan <ionic@ionic.de> | 2023-05-03 23:05:00 +0200 |
commit | 5cc2e006692e71bf037be83e138f94273b36d4da (patch) | |
tree | 88ef4c892ac964f82edc4a2b7d336e81947a54e8 /src/prompt-box.vala | |
parent | 20836a6021de0c7f4675881e56f62b32fa78726c (diff) | |
download | arctica-greeter-5cc2e006692e71bf037be83e138f94273b36d4da.tar.gz arctica-greeter-5cc2e006692e71bf037be83e138f94273b36d4da.tar.bz2 arctica-greeter-5cc2e006692e71bf037be83e138f94273b36d4da.zip |
src/prompt-box.vala: darken red error message text color.
This improves the contrast considerably for the new static white
background.
Diffstat (limited to 'src/prompt-box.vala')
-rw-r--r-- | src/prompt-box.vala | 2 |
1 files changed, 1 insertions, 1 deletions
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 |