1234567891011121314151617181920212223242526272829303132333435363738 |
- --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/pomelo/.wallpapers/ritual3dark.png"
- -- Special
- background="#111b25"
- foreground="#b5c7d7"
- cursor="#b5c7d7"
- -- Colors
- color0="#111b25"
- color1="#386693"
- color2="#396E9E"
- color3="#49749E"
- color4="#658CB2"
- color5="#769ABC"
- color6="#7B9EC0"
- color7="#b5c7d7"
- color8="#7e8b96"
- color9="#386693"
- color10="#396E9E"
- color11="#49749E"
- color12="#658CB2"
- color13="#769ABC"
- color14="#7B9EC0"
- color15="#b5c7d7"
|