gruvbox-light.rasi 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* ==========================================================================
  2. Rofi color theme
  3. Based on the Gruvbox color scheme for Vim by morhetz
  4. https://github.com/morhetz/gruvbox
  5. File: gruvbox-light.rasi
  6. Desc: Gruvbox light color theme for rofi
  7. Author: bardisty <b@bah.im>
  8. Source: https://github.com/bardisty/gruvbox-rofi
  9. Modified: Mon Feb 12 2018 06:06:06 PST -0800
  10. ========================================================================== */
  11. * {
  12. /* Theme settings */
  13. highlight: bold italic;
  14. scrollbar: true;
  15. /* Gruvbox light colors */
  16. gruvbox-light-bg0: #fbf1c7;
  17. gruvbox-light-bg0-soft: #f2e5bc;
  18. gruvbox-light-bg2: #d5c4a1;
  19. gruvbox-light-fg0: #282828;
  20. gruvbox-light-fg1: #3c3836;
  21. gruvbox-light-gray: #7c6f64;
  22. gruvbox-light-red-dark: #9d0006;
  23. gruvbox-light-red-light: #cc241d;
  24. gruvbox-light-yellow-dark: #b57614;
  25. gruvbox-light-yellow-light: #d79921;
  26. /* Theme colors */
  27. background: @gruvbox-light-bg0;
  28. background-color: @background;
  29. foreground: @gruvbox-light-fg1;
  30. border-color: @gruvbox-light-gray;
  31. separatorcolor: @border-color;
  32. scrollbar-handle: @border-color;
  33. normal-background: @background;
  34. normal-foreground: @foreground;
  35. alternate-normal-background: @gruvbox-light-bg0-soft;
  36. alternate-normal-foreground: @foreground;
  37. selected-normal-background: @gruvbox-light-bg2;
  38. selected-normal-foreground: @gruvbox-light-fg0;
  39. active-background: @gruvbox-light-yellow-dark;
  40. active-foreground: @background;
  41. alternate-active-background: @active-background;
  42. alternate-active-foreground: @active-foreground;
  43. selected-active-background: @gruvbox-light-yellow-light;
  44. selected-active-foreground: @active-foreground;
  45. urgent-background: @gruvbox-light-red-dark;
  46. urgent-foreground: @background;
  47. alternate-urgent-background: @urgent-background;
  48. alternate-urgent-foreground: @urgent-foreground;
  49. selected-urgent-background: @gruvbox-light-red-light;
  50. selected-urgent-foreground: @urgent-foreground;
  51. }
  52. @import "gruvbox-common.rasi"