diff options
author | Petter Rodhelind <petter.rodhelind@gmail.com> | 2021-03-05 11:09:26 +0100 |
---|---|---|
committer | Petter Rodhelind <petter.rodhelind@gmail.com> | 2021-03-05 11:09:26 +0100 |
commit | 126768d9ef06b0bfd557c93aa037ada4fe2f9ce8 (patch) | |
tree | a4285f4e47d51398149e33d35f4598125f7a46a6 /ui/tcell/style.go | |
parent | dd1862efd37d36b29931dfda47bfa8ec8418e2e0 (diff) | |
download | poe-126768d9ef06b0bfd557c93aa037ada4fe2f9ce8.tar.gz poe-126768d9ef06b0bfd557c93aa037ada4fe2f9ce8.tar.bz2 poe-126768d9ef06b0bfd557c93aa037ada4fe2f9ce8.zip |
Better colors.
Diffstat (limited to 'ui/tcell/style.go')
-rw-r--r-- | ui/tcell/style.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ui/tcell/style.go b/ui/tcell/style.go index 2249ea2..fec3390 100644 --- a/ui/tcell/style.go +++ b/ui/tcell/style.go @@ -38,25 +38,25 @@ func initStyles() error { func setStyleAcme() error { bodyStyle = tcell.StyleDefault. Background(tcell.NewHexColor(0xffffea)). - Foreground(tcell.ColorBlack) + Foreground(tcell.ColorBlack.TrueColor()) bodyCursorStyle = bodyStyle. Background(tcell.NewHexColor(0xeaea9e)) bodyHilightStyle = bodyStyle. - Background(tcell.NewHexColor(0xa6a65a)) + Background(tcell.NewHexColor(0xeeee9e)) unprintableStyle = bodyStyle. - Foreground(tcell.ColorRed) + Foreground(tcell.ColorRed.TrueColor()) tagStyle = tcell.StyleDefault. Background(tcell.NewHexColor(0xeaffff)). - Foreground(tcell.ColorBlack) + Foreground(tcell.ColorBlack.TrueColor()) tagCursorStyle = tagStyle. Background(tcell.NewHexColor(0x8888cc)). - Foreground(tcell.ColorBlack) + Foreground(tcell.ColorBlack.TrueColor()) tagHilightStyle = tagStyle. - Background(tcell.NewHexColor(0x8888cc)) + Background(tcell.NewHexColor(0x9eeeee)) tagSquareStyle = tagStyle. - Background(tcell.NewHexColor(0x8888cc)) + Background(tcell.NewHexColor(0xeaffff)) tagSquareModifiedStyle = tagStyle. - Background(tcell.NewHexColor(0x2222cc)) + Background(tcell.NewHexColor(0x000099)) vertlineStyle = bodyStyle.Reverse(false) return nil |