aboutsummaryrefslogtreecommitdiff
path: root/ui/tcell/style.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/tcell/style.go')
-rw-r--r--ui/tcell/style.go23
1 files changed, 14 insertions, 9 deletions
diff --git a/ui/tcell/style.go b/ui/tcell/style.go
index 0dcb565..a179c1f 100644
--- a/ui/tcell/style.go
+++ b/ui/tcell/style.go
@@ -24,19 +24,24 @@ var (
// initStyles initializes the different styles (colors for background/foreground).
func initStyles() error {
- bodyStyle = tcell.StyleDefault.
- Background(tcell.NewHexColor(0xffffea)).
- Foreground(tcell.ColorBlack)
+ bodyStyle = tcell.StyleDefault
+
+ // bodyStyle = tcell.StyleDefault.
+ // Background(tcell.NewHexColor(0xffffea)).
+ // Foreground(tcell.ColorBlack)
+
bodyCursorStyle = bodyStyle.
Background(tcell.NewHexColor(0xeaea9e))
- bodyHilightStyle = bodyStyle.
- Background(tcell.NewHexColor(0xa6a65a))
+
+ bodyHilightStyle = bodyStyle.Reverse(true)
+ // bodyHilightStyle = bodyStyle.
+ // Background(tcell.NewHexColor(0xa6a65a))
unprintableStyle = bodyStyle.
Foreground(tcell.ColorRed)
- tagStyle = tcell.StyleDefault.
- Background(tcell.NewHexColor(0xeaffff)).
- Foreground(tcell.ColorBlack)
+ tagStyle = tcell.StyleDefault.Reverse(true)
+ //Background(tcell.NewHexColor(0xeaffff)).
+ //Foreground(tcell.ColorBlack)
tagCursorStyle = tagStyle.
Background(tcell.NewHexColor(0x8888cc)).
Foreground(tcell.ColorBlack)
@@ -47,7 +52,7 @@ func initStyles() error {
tagSquareModifiedStyle = tagStyle.
Background(tcell.NewHexColor(0x2222cc))
- vertlineStyle = bodyStyle
+ vertlineStyle = bodyStyle.Reverse(false)
return nil
}