colors.hs 913 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. --Place this file in your .xmonad/lib directory and import module Colors into .xmonad/xmonad.hs config
  2. --The easy way is to create a soft link from this file to the file in .xmonad/lib using ln -s
  3. --Then recompile and restart xmonad.
  4. module Colors
  5. ( wallpaper
  6. , background, foreground, cursor
  7. , color0, color1, color2, color3, color4, color5, color6, color7
  8. , color8, color9, color10, color11, color12, color13, color14, color15
  9. ) where
  10. -- Shell variables
  11. -- Generated by 'wal'
  12. wallpaper="/home/pomelo/.wallpapers/ritual3dark.png"
  13. -- Special
  14. background="#111b25"
  15. foreground="#b5c7d7"
  16. cursor="#b5c7d7"
  17. -- Colors
  18. color0="#111b25"
  19. color1="#386693"
  20. color2="#396E9E"
  21. color3="#49749E"
  22. color4="#658CB2"
  23. color5="#769ABC"
  24. color6="#7B9EC0"
  25. color7="#b5c7d7"
  26. color8="#7e8b96"
  27. color9="#386693"
  28. color10="#396E9E"
  29. color11="#49749E"
  30. color12="#658CB2"
  31. color13="#769ABC"
  32. color14="#7B9EC0"
  33. color15="#b5c7d7"