https://github.com/runxel/gruvbox-iterm
Gruvbox adaption in iTerm format
https://github.com/runxel/gruvbox-iterm
color-scheme gruvbox gruvbox-dark iterm iterm2-color-scheme itermcolors
Last synced: 7 months ago
JSON representation
Gruvbox adaption in iTerm format
- Host: GitHub
- URL: https://github.com/runxel/gruvbox-iterm
- Owner: runxel
- License: mit
- Created: 2020-05-02T19:33:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-02T19:42:08.000Z (over 5 years ago)
- Last Synced: 2025-03-18T22:42:31.637Z (7 months ago)
- Topics: color-scheme, gruvbox, gruvbox-dark, iterm, iterm2-color-scheme, itermcolors
- Size: 210 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Gruvbox
> An adoption of the Gruvbox theme by [morhetz](https://github.com/morhetz/gruvbox) as an iTerm theme.

iTerm color schemes are wildly accepted, like in MacOS Terminal, iTerm2, PuTTY, and even in the Windows Terminal (aka CMD).
To apply it to the Windows Terminal use [ColorTool](https://github.com/microsoft/terminal/tree/master/src/tools/ColorTool).
Not supported at the moment: Badge Color, Cursor Guide Color, Link Color.For the new Windows Terminal `settings.json` copy the following into your settings (use it with `"colorScheme" : "Gruvbox"` in "defaults" or inside a profile):
```json
"schemes": [
{
"name": "Gruvbox",
"cursorColor": "#fe8019",
"foreground": "#ebdbb2",
"background": "#2a2827",
"black": "#1d2021",
"red": "#cc241d",
"green": "#98971a",
"yellow": "#d79921",
"blue": "#458588",
"cyan": "#689d6a",
"purple": "#b16286",
"white": "#fbf1c7",
"brightWhite": "#fbf1c7",
"brightBlack": "#32302f",
"brightRed": "#fb4934",
"brightGreen": "#b8bb26",
"brightYellow": "#fabd2f",
"brightBlue": "#83a598",
"brightPurple": "#d3869b",
"brightCyan": "#8ec07c"
}
],
```For tons of other color schemes I recommend [this repo](https://github.com/mbadolato/iTerm2-Color-Schemes).
Look at [terminal sexy](https://terminal.sexy/) if you want an easy way to generate those color schemes for yourself.---
If you've ever wondered, what these secret codes of the `ColorTool.exe` (and similar tools) are: Those are the [ANSI escape sequences](https://bluesock.org/~willkg/dev/ansi.html).
The first column to the left has the text colors, e.g. `32` means green. The rows with the `1;` appended mean "bold" – this clearly comes from times where you have benn in need of a color differentiation to display something like "bold" (_highlighted_) text. The first row shows the escape sequences for the background, where the number is offsetted by 10, thus `42` means a green background.