summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorewy <ewy0@protonmail.com>2026-04-14 21:43:23 +0200
committerewy <ewy0@protonmail.com>2026-04-14 21:43:23 +0200
commit991dee6058280e612011874e6957cb83d90bc6be (patch)
tree89cd23fd6b61c3645ff6c025e7844e7602ac1069
parent8c3c69641cdcfc602992e6168602546f579dd3f9 (diff)
stop highlighting everything
-rw-r--r--menu/target.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/menu/target.go b/menu/target.go
index 3323430..04dfea1 100644
--- a/menu/target.go
+++ b/menu/target.go
@@ -10,7 +10,7 @@ var (
TargetBackgroundColor = lipgloss.Color("8")
SelectedTargetBackgroundColor = lipgloss.Color("2")
TargetStyle = style.New(func() lipgloss.Style {
- st := lipgloss.NewStyle().Border(lipgloss.OuterHalfBlockBorder(), false, false, false, true).BorderBackground(TargetBackgroundColor).Background(TargetBackgroundColor)
+ st := lipgloss.NewStyle().Border(lipgloss.OuterHalfBlockBorder(), false, false, false, true)
return st
})
SelectedTargetStyle = style.New(func() lipgloss.Style {