summaryrefslogtreecommitdiff
path: root/ui/views/tabs.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/views/tabs.go')
-rw-r--r--ui/views/tabs.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/ui/views/tabs.go b/ui/views/tabs.go
index edfd02a..13e3672 100644
--- a/ui/views/tabs.go
+++ b/ui/views/tabs.go
@@ -6,17 +6,12 @@ import (
"github.com/charmbracelet/lipgloss"
)
-// TabType represents the available tabs
-
type TabType int
var (
- highlightColor = lipgloss.Color("#7ee2a8")
tabStyle = lipgloss.NewStyle().Border(lipgloss.RoundedBorder()).BorderForeground(highlightColor).Padding(0, 2)
inactiveTabStyle = tabStyle
activeTabStyle = tabStyle
- altCodeStyle = lipgloss.NewStyle().Foreground(lipgloss.Color("#666666")).Bold(true)
- windowStyle = lipgloss.NewStyle().BorderForeground(highlightColor).Padding(2, 0).Align(lipgloss.Center).Border(lipgloss.RoundedBorder())
)
func getTabsRow(tabsText []string, activeTab TabType) string {