From 72fd870c263fd1563b06ccb3126d2b01d6513a83 Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Tue, 7 Apr 2026 20:46:24 +0200 Subject: [PATCH] Use really white text in the PR pills --- pkg/gui/controllers/branches_controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/gui/controllers/branches_controller.go b/pkg/gui/controllers/branches_controller.go index 1c3d9e350..5fa8174dd 100644 --- a/pkg/gui/controllers/branches_controller.go +++ b/pkg/gui/controllers/branches_controller.go @@ -252,7 +252,7 @@ func coloredStateText(state string) string { if icons.IsIconEnabled() { return fmt.Sprintf("%s%s%s", withPrFgColor(state, ""), - withPrBgColor(state, style.FgWhite.Sprint(stateText(state))), + withPrBgColor(state, color.RGB(0xFF, 0xFF, 0xFF, false).Sprint(stateText(state))), withPrFgColor(state, "")) }