Use really white text in the PR pills

This commit is contained in:
Stefan Haller 2026-04-07 20:46:24 +02:00
parent bb5d5f2deb
commit 72fd870c26

View file

@ -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, ""))
}