gruvbox-dark-hard.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-dark-hard.rasi
  6. Desc: Gruvbox dark (hard contrast) 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:04:26 PST -0800
  10. ========================================================================== */
  11. * {
  12. /* Theme settings */
  13. highlight: bold italic;
  14. scrollbar: true;
  15. /* Gruvbox dark colors */
  16. gruvbox-dark-bg0-hard: #1d2021;
  17. gruvbox-dark-bg0: #282828;
  18. gruvbox-dark-bg2: #504945;
  19. gruvbox-dark-fg0: #fbf1c7;
  20. gruvbox-dark-fg1: #ebdbb2;
  21. gruvbox-dark-red-dark: #cc241d;
  22. gruvbox-dark-red-light: #fb4934;
  23. gruvbox-dark-yellow-dark: #d79921;
  24. gruvbox-dark-yellow-light: #fabd2f;
  25. gruvbox-dark-gray: #a89984;
  26. /* Theme colors */
  27. background: @gruvbox-dark-bg0-hard;
  28. background-color: @background;
  29. foreground: @gruvbox-dark-fg1;
  30. border-color: @gruvbox-dark-gray;
  31. separatorcolor: @border-color;
  32. scrollbar-handle: @border-color;
  33. normal-background: @background;
  34. normal-foreground: @foreground;
  35. alternate-normal-background: @gruvbox-dark-bg0;
  36. alternate-normal-foreground: @foreground;
  37. selected-normal-background: @gruvbox-dark-bg2;
  38. selected-normal-foreground: @gruvbox-dark-fg0;
  39. active-background: @gruvbox-dark-yellow-dark;
  40. active-foreground: @background;
  41. alternate-active-background: @active-background;
  42. alternate-active-foreground: @active-foreground;
  43. selected-active-background: @gruvbox-dark-yellow-light;
  44. selected-active-foreground: @active-foreground;
  45. urgent-background: @gruvbox-dark-red-dark;
  46. urgent-foreground: @background;
  47. alternate-urgent-background: @urgent-background;
  48. alternate-urgent-foreground: @urgent-foreground;
  49. selected-urgent-background: @gruvbox-dark-red-light;
  50. selected-urgent-foreground: @urgent-foreground;
  51. }
  52. @import "gruvbox-common.rasi"