Gruvbox-Dark.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Colors (Gruvbox-Dark)
  2. colors:
  3. # Default colors
  4. primary:
  5. background: '#282828'
  6. foreground: '#ebdbb2'
  7. # Bright and dim foreground colors
  8. #
  9. # The dimmed foreground color is calculated automatically if it is not present.
  10. # If the bright foreground color is not set, or `draw_bold_text_with_bright_colors`
  11. # is `false`, the normal foreground color will be used.
  12. #dim_foreground: '#9a9a9a'
  13. #bright_foreground: '#ffffff'
  14. # Cursor colors
  15. #
  16. # Colors which should be used to draw the terminal cursor. If these are unset,
  17. # the cursor color will be the inverse of the cell color.
  18. cursor:
  19. text: '#282828'
  20. cursor: '#ebdbb2'
  21. # Selection colors
  22. #
  23. # Colors which should be used to draw the selection area. If selection
  24. # background is unset, selection color will be the inverse of the cell colors.
  25. # If only text is unset the cell text color will remain the same.
  26. selection:
  27. text: '#ebdbb2'
  28. background: '#d45e5e'
  29. # Normal colors
  30. normal:
  31. black: '#151515'
  32. red: '#cc241d'
  33. green: '#98971a'
  34. yellow: '#d79921'
  35. blue: '#458588'
  36. magenta: '#b16286'
  37. cyan: '#689d6a'
  38. white: '#ebdbb2'
  39. # Bright colors
  40. bright:
  41. black: '#505050'
  42. red: '#cc241d'
  43. green: '#98971a'
  44. yellow: '#d79921'
  45. blue: '#458588'
  46. magenta: '#b16286'
  47. cyan: '#689d6a'
  48. white: '#a89984'