summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authoradamdottv <[email protected]>2025-06-26 12:33:06 -0500
committerJay V <[email protected]>2025-06-26 17:22:21 -0400
commitac39308dad7b1edd1edf73c9b6fa4178a24058d8 (patch)
treefedfb91fdb402dbb6b82116452b0c1ffc8eb78f6
parent346b49219d10ac44bab59abbf06bdf7a719d0f36 (diff)
downloadopencode-ac39308dad7b1edd1edf73c9b6fa4178a24058d8.tar.gz
opencode-ac39308dad7b1edd1edf73c9b6fa4178a24058d8.zip
fix(tui): visual issue with modal selected items in system theme
-rw-r--r--packages/tui/internal/components/dialog/session.go4
-rw-r--r--packages/tui/internal/components/list/list.go2
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/tui/internal/components/dialog/session.go b/packages/tui/internal/components/dialog/session.go
index 6ee8d1cce..f38f37bf5 100644
--- a/packages/tui/internal/components/dialog/session.go
+++ b/packages/tui/internal/components/dialog/session.go
@@ -49,14 +49,14 @@ func (s sessionItem) Render(selected bool, width int) string {
// Red background for delete confirmation
itemStyle = baseStyle.
Background(t.Error()).
- Foreground(t.Background()).
+ Foreground(t.BackgroundElement()).
Width(width).
PaddingLeft(1)
} else {
// Normal selection
itemStyle = baseStyle.
Background(t.Primary()).
- Foreground(t.Background()).
+ Foreground(t.BackgroundElement()).
Width(width).
PaddingLeft(1)
}
diff --git a/packages/tui/internal/components/list/list.go b/packages/tui/internal/components/list/list.go
index fe03f5c28..a7ea3458d 100644
--- a/packages/tui/internal/components/list/list.go
+++ b/packages/tui/internal/components/list/list.go
@@ -181,7 +181,7 @@ func (s StringItem) Render(selected bool, width int) string {
if selected {
itemStyle = baseStyle.
Background(t.Primary()).
- Foreground(t.Background()).
+ Foreground(t.BackgroundElement()).
Width(width).
PaddingLeft(1)
} else {