diff options
| author | adamdotdevin <[email protected]> | 2025-07-14 11:44:19 -0500 |
|---|---|---|
| committer | adamdotdevin <[email protected]> | 2025-07-14 12:15:46 -0500 |
| commit | f1e7e7c1383075c87859cdbb1d08d510398302a9 (patch) | |
| tree | 9639d16863bccc13314e97c38eb79e42893608b7 /packages/tui/internal/components/modal | |
| parent | 80b77caec04da4d5a97a92109c294c930f5e3c0f (diff) | |
| download | opencode-f1e7e7c1383075c87859cdbb1d08d510398302a9.tar.gz opencode-f1e7e7c1383075c87859cdbb1d08d510398302a9.zip | |
feat(tui): even better model selector
Diffstat (limited to 'packages/tui/internal/components/modal')
| -rw-r--r-- | packages/tui/internal/components/modal/modal.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/tui/internal/components/modal/modal.go b/packages/tui/internal/components/modal/modal.go index 5c2fbf8bb..09989d8ec 100644 --- a/packages/tui/internal/components/modal/modal.go +++ b/packages/tui/internal/components/modal/modal.go @@ -95,7 +95,7 @@ func (m *Modal) Render(contentView string, background string) string { var finalContent string if m.title != "" { titleStyle := baseStyle. - Foreground(t.Primary()). + Foreground(t.Text()). Bold(true). Padding(0, 1) @@ -140,6 +140,6 @@ func (m *Modal) Render(contentView string, background string) string { modalView, background, layout.WithOverlayBorder(), - layout.WithOverlayBorderColor(t.Primary()), + layout.WithOverlayBorderColor(t.BorderActive()), ) } |
