change themes for xmobar and neovim

This commit is contained in:
2022-03-18 13:25:06 +05:30
parent 2bac5bafcd
commit a2dfe8bea3
5 changed files with 52 additions and 39 deletions

View File

@@ -2,16 +2,16 @@ import Xmobar
bg, fg, grey, red, green, yellow, blue, magenta, cyan, white, sep :: String
sep = "<fc=" ++ cyan ++ ">║</fc>"
bg = "#1d1f21"
fg = "#c5c8c6"
grey = "#969896"
red = "#cc6666"
green = "#b5bd68"
yellow = "#f0c674"
blue = "#81a2be"
magenta = "#b294bb"
cyan = "#8abeb7"
white = "#ecebec"
bg = "#002b36"
fg = "#839496"
grey = "#073642"
red = "#dc322f"
green = "#859900"
yellow = "#b58900"
blue = "#268bd2"
magenta = "#d33682"
cyan = "#2aa198"
white = "#eee8d5"
config :: Config
config =

View File

@@ -20,12 +20,12 @@ import qualified XMonad.StackSet as W
import qualified Data.Map as M
--colors
bgColor = "#1d1f21"
fgColor = "#c5c8c6"
activeWinColor = "#f0c674"
inactiveWinColor = "#b294bb"
urgentWinColor = "#cc6666"
miscColor = "#8abeb7"
bgColor = "#002b36"
fgColor = "#eee8d5"
inactiveWinColor = "#2aa198"
activeWinColor = "#d33682"
urgentWinColor = "#dc322f"
miscColor = inactiveWinColor
myBorderWidth = 2
myTerminal = "/usr/bin/env st"

View File

@@ -105,7 +105,7 @@ in
window_type = "dock";
sticky = true;
icon_size = 23;
background = "#1d2021";
background = "#002b36";
icon_gravity = "E";
grow_gravity = "E";
kludges = "force_icons_size";