diff options
author | Santo Cariotti <santo@dcariotti.me> | 2025-04-05 18:46:17 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2025-04-05 18:46:17 +0200 |
commit | 6d5824f7d2225bdb434becd4c5afa838aa2af440 (patch) | |
tree | b036dd2efea4dcf8945729b200d24960633ec6cb /ui/views/tabs.go | |
parent | d304cffee2f45361ef527181b74bfc1b2a670115 (diff) |
Play model
Diffstat (limited to 'ui/views/tabs.go')
-rw-r--r-- | ui/views/tabs.go | 5 |
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 { |