aboutsummaryrefslogtreecommitdiff
path: root/lib/ui/tab.go
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-03-30 12:59:18 -0400
committerDrew DeVault <sir@cmpwn.com>2019-03-30 12:59:18 -0400
commit84965d680cff655c7734070ef93fd3c1e2177748 (patch)
treea77f59f78406a958795a14bf40292f31f25ddc24 /lib/ui/tab.go
parent700dea23fa75f213af2f99449db994008eab9d21 (diff)
Use tcell.Style.Reverse instead of black on white
Diffstat (limited to 'lib/ui/tab.go')
-rw-r--r--lib/ui/tab.go12
1 files changed, 3 insertions, 9 deletions
diff --git a/lib/ui/tab.go b/lib/ui/tab.go
index 32b195c..49bdffa 100644
--- a/lib/ui/tab.go
+++ b/lib/ui/tab.go
@@ -83,19 +83,13 @@ func (tabs *Tabs) Select(index int) {
func (strip *TabStrip) Draw(ctx *Context) {
x := 0
for i, tab := range strip.Tabs {
- style := tcell.StyleDefault.
- Background(tcell.ColorWhite).
- Foreground(tcell.ColorBlack)
+ style := tcell.StyleDefault.Reverse(true)
if strip.Selected == i {
- style = tcell.StyleDefault.
- Background(tcell.ColorDefault).
- Foreground(tcell.ColorDefault)
+ style = tcell.StyleDefault
}
x += ctx.Printf(x, 0, style, " %s ", tab.Name)
}
- style := tcell.StyleDefault.
- Background(tcell.ColorWhite).
- Foreground(tcell.ColorBlack)
+ style := tcell.StyleDefault.Reverse(true)
ctx.Fill(x, 0, ctx.Width()-x, 1, ' ', style)
}