From 39e6ce3ab486e8d62267d49eee4fb86967da77ab Mon Sep 17 00:00:00 2001
From: Nuriel Shem-Tov <nurielst@hotmail.com>
Date: Wed, 24 Jul 2019 23:58:20 +0200
Subject: [PATCH] Back to original color

---
 plugins/statusscreen/statusscreen.go  | 2 +-
 plugins/statusscreen/ui_header_bar.go | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/plugins/statusscreen/statusscreen.go b/plugins/statusscreen/statusscreen.go
index d02d20f6..5c6d13e2 100644
--- a/plugins/statusscreen/statusscreen.go
+++ b/plugins/statusscreen/statusscreen.go
@@ -49,7 +49,7 @@ func run(plugin *node.Plugin) {
 	content.SetColumns(0)
 
 	footer := newPrimitive("")
-	footer.SetBackgroundColor(tcell.ColorDarkBlue)
+	footer.SetBackgroundColor(tcell.ColorDarkMagenta)
 	footer.SetTextColor(tcell.ColorWhite)
 
 	grid := tview.NewGrid().
diff --git a/plugins/statusscreen/ui_header_bar.go b/plugins/statusscreen/ui_header_bar.go
index e358663c..e8bd41a2 100644
--- a/plugins/statusscreen/ui_header_bar.go
+++ b/plugins/statusscreen/ui_header_bar.go
@@ -40,13 +40,13 @@ func NewUIHeaderBar() *UIHeaderBar {
 		SetTextAlign(tview.AlignLeft).
 		SetTextColor(tcell.ColorWhite).
 		SetDynamicColors(true).
-		SetBackgroundColor(tcell.ColorDarkBlue)
+		SetBackgroundColor(tcell.ColorDarkMagenta)
 
 	headerBar.InfoContainer.
 		SetTextAlign(tview.AlignRight).
 		SetTextColor(tcell.ColorWhite).
 		SetDynamicColors(true).
-		SetBackgroundColor(tcell.ColorDarkBlue)
+		SetBackgroundColor(tcell.ColorDarkMagenta)
 
 	headerBar.Primitive.
 		SetColumns(17, 0).
-- 
GitLab