diff options
author | Ben Sima <ben@bsima.me> | 2019-04-15 09:18:13 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-04-15 09:18:13 -0700 |
commit | d5cebe7cc360b3bc17421cb9cb2b5230471b08ab (patch) | |
tree | 8aa5ca63fae582336515a5adad7dad8471f1da05 /xmonad.hs | |
parent | 0fc3628e305b0f548bfa0fcf5c86bd59c57a46d9 (diff) |
xmonad: fix light background color
Diffstat (limited to 'xmonad.hs')
-rw-r--r-- | xmonad.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -38,7 +38,7 @@ data Colors = Colors lightTheme = Colors { highlight = "#67b11d" - , background = "#efeae9" + , background = "#fbf8ef" , foreground = "#655370" } @@ -119,7 +119,7 @@ myTabCfg theme = def } myLayout theme = avoidStruts $ - noBorders (tabbed shrinkText $ myTabCfg theme) -- default tab config + noBorders (tabbed shrinkText $ myTabCfg theme) ||| tiled ||| Mirror tiled ||| noBorders Full |