12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- # Colors (Gruvbox-Dark)
- colors:
- # Default colors
- primary:
- background: '#282828'
- foreground: '#ebdbb2'
- # Bright and dim foreground colors
- #
- # The dimmed foreground color is calculated automatically if it is not present.
- # If the bright foreground color is not set, or `draw_bold_text_with_bright_colors`
- # is `false`, the normal foreground color will be used.
- #dim_foreground: '#9a9a9a'
- #bright_foreground: '#ffffff'
- # Cursor colors
- #
- # Colors which should be used to draw the terminal cursor. If these are unset,
- # the cursor color will be the inverse of the cell color.
- cursor:
- text: '#282828'
- cursor: '#ebdbb2'
- # Selection colors
- #
- # Colors which should be used to draw the selection area. If selection
- # background is unset, selection color will be the inverse of the cell colors.
- # If only text is unset the cell text color will remain the same.
- selection:
- text: '#ebdbb2'
- background: '#d45e5e'
- # Normal colors
- normal:
- black: '#151515'
- red: '#cc241d'
- green: '#98971a'
- yellow: '#d79921'
- blue: '#458588'
- magenta: '#b16286'
- cyan: '#689d6a'
- white: '#ebdbb2'
- # Bright colors
- bright:
- black: '#505050'
- red: '#cc241d'
- green: '#98971a'
- yellow: '#d79921'
- blue: '#458588'
- magenta: '#b16286'
- cyan: '#689d6a'
- white: '#a89984'
|