diff options
author | Adrian Kummerlaender | 2018-06-22 21:19:46 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2018-06-22 21:19:46 +0200 |
commit | 85820915419ae129c5965dca9d3636ff7bca769b (patch) | |
tree | 7bf932d94b84637cc9a428b3e2256968de886427 /gui/conf | |
parent | ab46be8acc63fec4daf86289ffa240d9e943d5fc (diff) | |
download | nixos_home-85820915419ae129c5965dca9d3636ff7bca769b.tar nixos_home-85820915419ae129c5965dca9d3636ff7bca769b.tar.gz nixos_home-85820915419ae129c5965dca9d3636ff7bca769b.tar.bz2 nixos_home-85820915419ae129c5965dca9d3636ff7bca769b.tar.lz nixos_home-85820915419ae129c5965dca9d3636ff7bca769b.tar.xz nixos_home-85820915419ae129c5965dca9d3636ff7bca769b.tar.zst nixos_home-85820915419ae129c5965dca9d3636ff7bca769b.zip |
Fix green color value
Diffstat (limited to 'gui/conf')
-rw-r--r-- | gui/conf/xmonad.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gui/conf/xmonad.hs b/gui/conf/xmonad.hs index 359e312..634b9cf 100644 --- a/gui/conf/xmonad.hs +++ b/gui/conf/xmonad.hs @@ -33,10 +33,10 @@ customTabTheme = (theme xmonadTheme) { fontName = "xft:Iosevka Medium-12" , decoHeight = 20 , activeTextColor = "#222222" - , activeColor = "#909737" + , activeColor = "#909636" , inactiveTextColor = "#999999" , inactiveColor = "#161616" - , activeBorderColor = "#909737" + , activeBorderColor = "#909636" , inactiveBorderColor = "#161616" } availableLayouts = id @@ -143,7 +143,7 @@ main = xmonad $ ewmh { modMask = mod4Mask -- super key as modifier , borderWidth = 3 , normalBorderColor = "#161616" - , focusedBorderColor = "#909737" + , focusedBorderColor = "#909636" , keys = \c -> mkKeymap c keybindings , startupHook = return () >> checkKeymap def keybindings , handleEventHook = customEventHook @@ -192,4 +192,4 @@ hideScreenBorder :: RationalRect -> RationalRect hideScreenBorder (RationalRect x0 y0 w h) = RationalRect (x0-(bw/sw)) (y0-(bw/sh)) (w+((2*bw)/sw)) (h+((2*bw+1)/sh)) where bw = 6 sw = 1280 - sh = 1024 + sh = 768 |