aboutsummaryrefslogtreecommitdiff
path: root/style.go
diff options
context:
space:
mode:
Diffstat (limited to 'style.go')
-rw-r--r--style.go12
1 files changed, 9 insertions, 3 deletions
diff --git a/style.go b/style.go
index 57debbf..eaff897 100644
--- a/style.go
+++ b/style.go
@@ -9,9 +9,11 @@ var (
bodyHilightStyle tcell.Style
// tag is the window tag line above the body
- tagStyle tcell.Style
- tagCursorStyle tcell.Style
- tagHilightStyle tcell.Style
+ tagStyle tcell.Style
+ tagCursorStyle tcell.Style
+ tagHilightStyle tcell.Style
+ tagSquareStyle tcell.Style
+ tagSquareModifiedStyle tcell.Style
// vertline is the vertical line separating columns
vertlineStyle tcell.Style
@@ -40,6 +42,10 @@ func InitStyles() {
Foreground(tcell.ColorBlack)
tagHilightStyle = tagStyle.
Background(tcell.NewHexColor(0x8888cc))
+ tagSquareStyle = tagStyle.
+ Background(tcell.NewHexColor(0x8888cc))
+ tagSquareModifiedStyle = tagStyle.
+ Background(tcell.NewHexColor(0x0))
vertlineStyle = bodyStyle
}