diff options
Diffstat (limited to 'ui/tcell/style.go')
-rw-r--r-- | ui/tcell/style.go | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/ui/tcell/style.go b/ui/tcell/style.go index a179c1f..7561bf3 100644 --- a/ui/tcell/style.go +++ b/ui/tcell/style.go @@ -24,24 +24,25 @@ var ( // initStyles initializes the different styles (colors for background/foreground). func initStyles() error { - bodyStyle = tcell.StyleDefault + //bodyStyle = tcell.StyleDefault - // bodyStyle = tcell.StyleDefault. - // Background(tcell.NewHexColor(0xffffea)). - // Foreground(tcell.ColorBlack) + bodyStyle = tcell.StyleDefault. + Background(tcell.NewHexColor(0xffffea)). + Foreground(tcell.ColorBlack) bodyCursorStyle = bodyStyle. Background(tcell.NewHexColor(0xeaea9e)) - bodyHilightStyle = bodyStyle.Reverse(true) - // bodyHilightStyle = bodyStyle. - // Background(tcell.NewHexColor(0xa6a65a)) + //bodyHilightStyle = bodyStyle.Reverse(true) + bodyHilightStyle = bodyStyle. + Background(tcell.NewHexColor(0xa6a65a)) unprintableStyle = bodyStyle. Foreground(tcell.ColorRed) - tagStyle = tcell.StyleDefault.Reverse(true) - //Background(tcell.NewHexColor(0xeaffff)). - //Foreground(tcell.ColorBlack) + //tagStyle = tcell.StyleDefault.Reverse(true) + tagStyle = tcell.StyleDefault. + Background(tcell.NewHexColor(0xeaffff)). + Foreground(tcell.ColorBlack) tagCursorStyle = tagStyle. Background(tcell.NewHexColor(0x8888cc)). Foreground(tcell.ColorBlack) |