From 1a3dc8ef5ff71f010c76df877c6711ea7510d4e1 Mon Sep 17 00:00:00 2001 From: raziman Date: Wed, 10 Feb 2021 13:18:10 +0800 Subject: [PATCH] fix bright white border color --- gomu.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gomu.go b/gomu.go index 670e4d8..70432fd 100644 --- a/gomu.go +++ b/gomu.go @@ -153,8 +153,8 @@ func (g *Gomu) unsuspend() bool { // Removes the color of the given panel func (g *Gomu) setUnfocusPanel(panel Panel) { - g.prevPanel.SetBorderColor(g.colors.foreground) - g.prevPanel.SetTitleColor((g.colors.foreground)) + g.prevPanel.SetBorderColor(g.colors.background) + g.prevPanel.SetTitleColor((g.colors.background)) } // Quit the application and do the neccessary clean up