38 lines
908 B
Haskell
38 lines
908 B
Haskell
--Place this file in your .xmonad/lib directory and import module Colors into .xmonad/xmonad.hs config
|
|
--The easy way is to create a soft link from this file to the file in .xmonad/lib using ln -s
|
|
--Then recompile and restart xmonad.
|
|
|
|
module Colors
|
|
( wallpaper
|
|
, background, foreground, cursor
|
|
, color0, color1, color2, color3, color4, color5, color6, color7
|
|
, color8, color9, color10, color11, color12, color13, color14, color15
|
|
) where
|
|
|
|
-- Shell variables
|
|
-- Generated by 'wal'
|
|
wallpaper="/home/Zaske/Images/red_mountain.jpg"
|
|
|
|
-- Special
|
|
background="#0f0d16"
|
|
foreground="#f1c3bf"
|
|
cursor="#f1c3bf"
|
|
|
|
-- Colors
|
|
color0="#0f0d16"
|
|
color1="#98364A"
|
|
color2="#C6394B"
|
|
color3="#A84859"
|
|
color4="#DE5F67"
|
|
color5="#F3877C"
|
|
color6="#DA7C82"
|
|
color7="#f1c3bf"
|
|
color8="#a88885"
|
|
color9="#98364A"
|
|
color10="#C6394B"
|
|
color11="#A84859"
|
|
color12="#DE5F67"
|
|
color13="#F3877C"
|
|
color14="#DA7C82"
|
|
color15="#f1c3bf"
|