diff --git a/plugins/statusscreen/statusscreen.go b/plugins/statusscreen/statusscreen.go
index 5c6d13e27a7162126eef3a69798110f6758ff059..d02d20f624e8316fc66d9a0cf544ed9aac9568b4 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.ColorDarkMagenta)
+	footer.SetBackgroundColor(tcell.ColorDarkBlue)
 	footer.SetTextColor(tcell.ColorWhite)
 
 	grid := tview.NewGrid().
diff --git a/plugins/statusscreen/ui_header_bar.go b/plugins/statusscreen/ui_header_bar.go
index e8bd41a217b82b84af63c26370796bff455aaa0e..e358663cfdc41aa68d617f439ca5cfd9306e9f8d 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.ColorDarkMagenta)
+		SetBackgroundColor(tcell.ColorDarkBlue)
 
 	headerBar.InfoContainer.
 		SetTextAlign(tview.AlignRight).
 		SetTextColor(tcell.ColorWhite).
 		SetDynamicColors(true).
-		SetBackgroundColor(tcell.ColorDarkMagenta)
+		SetBackgroundColor(tcell.ColorDarkBlue)
 
 	headerBar.Primitive.
 		SetColumns(17, 0).