From 913ef0d3f24b0bcdf8660df82a1a35ae517d63b0 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Tue, 4 Nov 2014 11:26:08 +0100 Subject: [PATCH] theme: don't use transparency for borders When the client is also using ARGB, the border becomes too transparent and may be difficult to see. Just use a plain RGB border. --- rc/theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc/theme.lua b/rc/theme.lua index 9b029c3..fa28809 100644 --- a/rc/theme.lua +++ b/rc/theme.lua @@ -37,7 +37,7 @@ theme.fg_minimize = "#ffffff" theme.border_width = 4 theme.border_normal = "#00000000" -theme.border_focus = "#FF7F00EE" +theme.border_focus = "#FF7F00" theme.border_marked = "#91231c66" -- Widget stuff