diff options
author | ThanosApollo <[email protected]> | 2022-10-12 12:58:00 +0300 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-10-12 12:58:00 +0300 |
commit | 6476ac80e8959bb8034a0a2860023d8eb2ac8375 (patch) | |
tree | c5b5eaaad7e66e913f65f1bd19c45d70963a72a6 /.config/xmonad/lib/Colors/SolarizedLight.hs | |
parent | 65a2b283f6b5c51809ed2fd257532f7fe55075ec (diff) |
Update xmonad system and zsh
Diffstat (limited to '.config/xmonad/lib/Colors/SolarizedLight.hs')
-rw-r--r-- | .config/xmonad/lib/Colors/SolarizedLight.hs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.config/xmonad/lib/Colors/SolarizedLight.hs b/.config/xmonad/lib/Colors/SolarizedLight.hs new file mode 100644 index 0000000..3049a7a --- /dev/null +++ b/.config/xmonad/lib/Colors/SolarizedLight.hs @@ -0,0 +1,28 @@ +module Colors.SolarizedLight where + +import XMonad + +colorScheme = "solarized-light" + +colorBack = "#fdf6e3" +colorFore = "#657b83" + +color01 = "#073642" +color02 = "#dc322f" +color03 = "#859900" +color04 = "#b58900" +color05 = "#268bd2" +color06 = "#d33682" +color07 = "#2aa198" +color08 = "#eee8d5" +color09 = "#002b36" +color10 = "#cb4b16" +color11 = "#586e75" +color12 = "#657b83" +color13 = "#839496" +color14 = "#fdf6e3" -- Was color16 but too light for use in panel. +color15 = "#93a1a1" +color16 = "#6c71c4" -- Was color14 but needed a dark color in this spot. + +colorTrayer :: String +colorTrayer = "--tint 0xfdf6e3" |