From 1ca578a3a1709359e53c4d4c20cd9f17fd933a98 Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Tue, 16 Sep 2025 15:34:30 +0800 Subject: [PATCH] Fix #1289 --- lib-tui/GHCup/Brick/Attributes.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib-tui/GHCup/Brick/Attributes.hs b/lib-tui/GHCup/Brick/Attributes.hs index e6ed39c9..0591dd1f 100644 --- a/lib-tui/GHCup/Brick/Attributes.hs +++ b/lib-tui/GHCup/Brick/Attributes.hs @@ -39,7 +39,7 @@ defaultAttributes no_color = Brick.attrMap , (strayAttr , Vty.defAttr `withForeColor` Vty.brightCyan) , (dayAttr , Vty.defAttr `withForeColor` Vty.brightCyan) , (helpAttr , Vty.defAttr `withStyle` Vty.italic) - , (hoorayAttr , Vty.defAttr `withForeColor` Vty.brightWhite) + , (hoorayAttr , Vty.defAttr `withStyle` Vty.bold) , (helpMsgAttr , Vty.defAttr `withForeColor` Vty.yellow) , (errMsgAttr , Vty.defAttr `withForeColor` Vty.red) ]