summaryrefslogtreecommitdiffhomepage
path: root/packages/tui
diff options
context:
space:
mode:
Diffstat (limited to 'packages/tui')
-rw-r--r--packages/tui/internal/components/chat/editor.go2
-rw-r--r--packages/tui/internal/components/chat/messages.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/tui/internal/components/chat/editor.go b/packages/tui/internal/components/chat/editor.go
index 154d3c370..3c51824c7 100644
--- a/packages/tui/internal/components/chat/editor.go
+++ b/packages/tui/internal/components/chat/editor.go
@@ -115,7 +115,7 @@ func (m *editorComponent) View() string {
PaddingBottom(1).
Background(t.BackgroundElement()).
Border(lipgloss.ThickBorder(), false, true).
- BorderForeground(t.BackgroundSubtle()).
+ BorderForeground(t.BackgroundElement()).
BorderBackground(t.Background()).
Render(textarea)
diff --git a/packages/tui/internal/components/chat/messages.go b/packages/tui/internal/components/chat/messages.go
index 3016c24d9..29295dfa9 100644
--- a/packages/tui/internal/components/chat/messages.go
+++ b/packages/tui/internal/components/chat/messages.go
@@ -266,7 +266,7 @@ func (m *messagesComponent) header() string {
BorderLeft(true).
BorderRight(true).
BorderBackground(t.Background()).
- BorderForeground(t.BackgroundSubtle()).
+ BorderForeground(t.BackgroundElement()).
BorderStyle(lipgloss.ThickBorder()).
Render(header)