├── C └── colors.h ├── README.md ├── color.table ├── console2 ├── gruvbox-dark.xml └── gruvbox-light.xml ├── deepin-terminal ├── gruvbox_dark └── gruvbox_light ├── gedit ├── gruvbox-dark.xml └── gruvbox-light.xml ├── hexchat ├── dark │ └── colors.conf └── light │ └── colors.conf ├── iterm2 ├── gruvbox-dark.itermcolors └── gruvbox-light.itermcolors ├── konsole ├── Gruvbox_dark.colorscheme └── Gruvbox_light.colorscheme ├── mintty └── gruvbox.minttyrc ├── notepad++ ├── Gruvbox Dark Hard.xml ├── Gruvbox Dark Medium.xml ├── Gruvbox Dark Soft.xml ├── Gruvbox Light Hard.xml ├── Gruvbox Light Medium.xml └── Gruvbox Light Soft.xml ├── osx-terminal └── Gruvbox-dark.terminal ├── pantheon-terminal ├── gruvbox-dark.sh └── gruvbox-light.sh ├── putty ├── putty-gruvbox-dark-hard.reg ├── putty-gruvbox-dark-medium.reg ├── putty-gruvbox-dark-soft.reg ├── putty-gruvbox-light-hard.reg ├── putty-gruvbox-light-medium.reg └── putty-gruvbox-light-soft.reg ├── qtcreator ├── README.md ├── gruvbox-dark.xml └── gruvbox-light.xml ├── roxterm ├── Roxterm-dark └── Roxterm-light ├── scss ├── README.md ├── gruvbox-dark.scss ├── gruvbox-light.scss └── gruvbox.scss ├── shell └── colors.sh ├── st ├── gruvbox-dark.h └── gruvbox-light.h ├── termite ├── gruvbox-dark └── gruvbox-light ├── urxvt256 └── gruvbox-urxvt256.xresources ├── xcode ├── Gruvbox Dark (Inconsolata 14).dvtcolortheme ├── Gruvbox Dark (SF Mono 11).dvtcolortheme ├── Gruvbox Light (Inconsolata 14).dvtcolortheme ├── Gruvbox Light (SF Mono 11).dvtcolortheme └── README.md ├── xfce4-terminal ├── README.org ├── gruvbox-dark-hard.theme ├── gruvbox-dark-soft.theme ├── gruvbox-dark.theme ├── gruvbox-light-hard.theme ├── gruvbox-light-soft.theme └── gruvbox-light.theme └── xresources ├── gruvbox-dark.xresources └── gruvbox-light.xresources /C/colors.h: -------------------------------------------------------------------------------- 1 | static const char dark0_hard[] = "#1D2021"; 2 | static const char dark0[] = "#282828"; 3 | static const char dark0_soft[] = "#32302F"; 4 | static const char dark1[] = "#3c3836"; 5 | static const char dark2[] = "#504945"; 6 | static const char dark3[] = "#665C54"; 7 | static const char dark4[] = "#7C6F64"; 8 | 9 | static const char gray_245[] = "#928374"; 10 | static const char gray_244[] = "#928374"; 11 | 12 | static const char light0_hard[] = "#F9F5D7"; 13 | static const char light0[] = "#FBF1C7"; 14 | static const char light0_soft[] = "#F2E5BC"; 15 | static const char light1[] = "#EBDBB2"; 16 | static const char light2[] = "#D5C4A1"; 17 | static const char light3[] = "#BDAE93"; 18 | static const char light4[] = "#A89984"; 19 | 20 | static const char bright_red[] = "#FB4934"; 21 | static const char bright_green[] = "#B8BB26"; 22 | static const char bright_yellow[] = "#FABD2F"; 23 | static const char bright_blue[] = "#83A598"; 24 | static const char bright_purple[] = "#D3869B"; 25 | static const char bright_aqua[] = "#8EC07C"; 26 | static const char bright_orange[] = "#FE8019"; 27 | 28 | static const char neutral_red[] = "#CC241D"; 29 | static const char neutral_green[] = "#98971A"; 30 | static const char neutral_yellow[] = "#D79921"; 31 | static const char neutral_blue[] = "#458588"; 32 | static const char neutral_purple[] = "#B16286"; 33 | static const char neutral_aqua[] = "#689D6A"; 34 | static const char neutral_orange[] = "#D65D0E"; 35 | 36 | static const char faded_red[] = "#9D0006"; 37 | static const char faded_green[] = "#79740E"; 38 | static const char faded_yellow[] = "#B57614"; 39 | static const char faded_blue[] = "#076678"; 40 | static const char faded_purple[] = "#8F3F71"; 41 | static const char faded_aqua[] = "#427B58"; 42 | static const char faded_orange[] = "#AF3A03"; 43 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | gruvbox contributions, ports and extras 4 | 5 | Palette 6 | ------- 7 | 8 | ### Dark mode 9 | 10 | ![Palette Dark](http://i.imgur.com/wa666xg.png) 11 | 12 | ### Light mode 13 | 14 | ![Palette Light](http://i.imgur.com/49qKyYW.png) 15 | 16 | ## Ports 17 | 18 | Here's a list of ports to other text editors and applications. The original Vim theme can be found here: https://github.com/morhetz/gruvbox 19 | 20 | ### Alacritty 21 | 22 | - [Daniel M. Capella's port](https://github.com/jwilm/alacritty/wiki/Color-schemes#gruvbox) 23 | 24 | ### Alfred 25 | 26 | - [Intens' gruvbox-dark port](https://www.alfredapp.com/extras/theme/FtXTsjweeU/) 27 | 28 | ### Atom 29 | 30 | - [Caleb Land's port](https://github.com/caleb/gruvbox-syntax-atom) 31 | - [Ryan Taylor's port](https://github.com/ryanmt/atom-gruvbox-dark) 32 | - [Brian Reilly's port](https://github.com/Briles/gruvbox-atom) 33 | - [Steve Lombardi's port](https://github.com/smlombardi/gruvbox-syntax) 34 | 35 | ### Awesome WM 36 | 37 | - [Raphael McSinyx's theme](https://github.com/McSinyx/debdotfiles/tree/master/awesome/.config/awesome/themes/gruvbox) 38 | 39 | ### Chrome 40 | 41 | - [Ben Brooks' port](https://github.com/bbrks/chrome-gruvbox) 42 | 43 | ### Conky 44 | 45 | - [a-schaefers' port](https://github.com/a-schaefers/i3-wm-gruvbox-theme/tree/master/conky) 46 | 47 | ### CudaText 48 | 49 | - [Brian Reilly's port](https://github.com/Briles/gruvbox-cudatext) 50 | 51 | ### Emacs 52 | 53 | - [Greduan's port](https://github.com/Greduan/emacs-theme-gruvbox) 54 | 55 | ### Firefox 56 | - [Abraham Raji's port](https://github.com/avronr/gruvarc-firefox) 57 | 58 | ### HyperTerm 59 | 60 | - [Gruvbox Dark Theme](https://github.com/mcchrish/hyperterm-gruvbox-dark) 61 | 62 | ### i3-wm 63 | 64 | - [a-schaefers' port](https://github.com/a-schaefers/i3-wm-gruvbox-theme) 65 | 66 | ### i3status-rust 67 | 68 | - [Daniel M. Capella's port](https://github.com/greshake/i3status-rust/blob/master/src/themes.rs) 69 | 70 | ### IDEA 71 | - [Caleb Land's port](https://github.com/caleb/gruvbox-idea) 72 | - [Visual Gruvbox (Medium Dark) by rphlmr](https://github.com/rphlmr/visual-gruvbox-medium-dark) 73 | 74 | ### Multimarkdown Composer 75 | 76 | - [jlxz's stylesheet](https://github.com/jlxz/mmdc_gruvbox_style) 77 | 78 | ### Notepad++ 79 | - [wburton95's Port](https://github.com/wburton95/Notepadpp-Gruvbox-Port) 80 | 81 | ### Pentadactyl 82 | 83 | - [Roman Inflianskas's color scheme](https://github.com/rominf/pentadactyl-gruvbox) 84 | 85 | ### Pygments 86 | 87 | - [Dave Yarwood's port](https://github.com/daveyarwood/gruvbox-pygments) 88 | 89 | ### Qt Creator 90 | 91 | - [Julian Konchunas's port](https://github.com/konchunas/gruvbox-qtcreator) 92 | 93 | ### Rofi 94 | 95 | - [Color themes by Brian Hardisty](https://github.com/bardisty/gruvbox-rofi) 96 | 97 | ### Slack 98 | 99 | - [By unknown author](http://sweetthemesaremadeofthe.se/post/114732568417/gruvbox-inspired) 100 | 101 | ### Sublime // TextMate 102 | 103 | - [Martin Radimec's port](https://github.com/peaceant/gruvbox) 104 | - [Brian Reilly's port](https://github.com/Briles/gruvbox) 105 | 106 | ### Taskpaper 3 107 | 108 | - [Nathan Wykes' port](https://github.com/nwykes/gruvbox-taskpaper-theme) 109 | 110 | ### Tilix terminal 111 | 112 | - [Michael Thessel's port](https://github.com/MichaelThessel/tilix-gruvbox) 113 | 114 | ### Visual Studio 115 | 116 | - [UI Theme by Mark Fischer, Jr.](https://github.com/flyingfisch/VSGruvbox) 117 | - [Editor themes by various authors](http://studiostyl.es/schemes/search?q=gruvbox) 118 | - [Visual Gruvbox (Medium Dark) by rphlmr](https://github.com/rphlmr/visual-gruvbox-medium-dark) 119 | 120 | ### Visual Studio Code 121 | 122 | - [Gruvbox Themes by Tom Philbin](https://marketplace.visualstudio.com/items?itemName=tomphilbin.gruvbox-themes) 123 | - [Gruvbox Minor by adamsome](https://marketplace.visualstudio.com/items?itemName=adamsome.vscode-theme-gruvbox-minor) 124 | - [Visual Gruvbox (Medium Dark) by rphlmr](https://marketplace.visualstudio.com/items?itemName=rphlmr.visual-gruvbox-medium-dark) 125 | -------------------------------------------------------------------------------- /color.table: -------------------------------------------------------------------------------- 1 | GRUVCOLR HEX RELATV ALIAS TERMCOLOR RGB ITERM RGB OSX HEX 2 | -------------- ------- ------------ ------------ ----------- ----------- ------- 3 | dark0_hard #1d2021 [ ] [ ] 234 [h0][ ] 29- 32- 33 22- 24- 25 #161819 4 | dark0 #282828 [bg0] [fg0] 235 [ 0][ ] 40- 40- 40 30- 30- 30 #1e1e1e 5 | dark0_soft #32302f [ ] [ ] 236 [s0][ ] 50- 48- 47 38- 36- 35 #262423 6 | dark1 #3c3836 [bg1] [fg1] 237 [ ][15] 60- 56- 54 46- 42- 41 #2e2a29 7 | dark2 #504945 [bg2] [fg2] 239 [ ][ ] 80- 73- 69 63- 57- 53 #3f3935 8 | dark3 #665c54 [bg3] [fg3] 241 [ ][ ] 102- 92- 84 83- 74- 66 #534a42 9 | dark4 #7c6f64 [bg4] [fg4] 243 [ ][ 7] 124-111-100 104- 92- 81 #685c51 10 | 11 | gray_245 #928374 [gray] [ ] 245 [ 8][ ] 146-131-116 127-112- 97 #7f7061 12 | gray_244 #928374 [ ] [gray] 244 [ ][ 8] 146-131-116 127-112- 97 #7f7061 13 | 14 | light0_hard #f9f5d7 [ ] [ ] 230 [ ][h0] 249-245-215 248-244-205 #f8f4cd 15 | light0 #fbf1c7 [fg0] [bg0] 229 [ ][ 0] 251-241-199 250-238-187 #faeebb 16 | light0_soft #f2e5bc [ ] [ ] 228 [ ][s0] 242-229-188 239-223-174 #efdfae 17 | light1 #ebdbb2 [fg1] [bg1] 223 [15][ ] 235-219-178 230-212-163 #e6d4a3 18 | light2 #d5c4a1 [fg2] [bg2] 250 [ ][ ] 213-196-161 203-184-144 #cbb890 19 | light3 #bdae93 [fg3] [bg3] 248 [ ][ ] 189-174-147 175-159-129 #af9f81 20 | light4 #a89984 [fg4] [bg4] 246 [ 7][ ] 168-153-132 151-135-113 #978771 21 | 22 | bright_red #fb4934 [red] [ ] 167 [ 9][ ] 251- 73- 52 247- 48- 40 #f73028 23 | bright_green #b8bb26 [green] [ ] 142 [10][ ] 184-187- 38 170-176- 30 #aab01e 24 | bright_yellow #fabd2f [yellow][ ] 214 [11][ ] 250-189- 47 247-177- 37 #f7b125 25 | bright_blue #83a598 [blue] [ ] 109 [12][ ] 131-165-152 113-149-134 #719586 26 | bright_purple #d3869b [purple][ ] 175 [13][ ] 211-134-155 199-112-137 #c77089 27 | bright_aqua #8ec07c [aqua] [ ] 108 [14][ ] 142-192-124 125-182-105 #7db669 28 | bright_orange #fe8019 [orange][ ] 208 [ ][ ] 254-128- 25 251-106- 22 #fb6a16 29 | 30 | neutral_red #cc241d [ ] [ ] 124 [ 1][ 1] 204- 36- 29 190- 15- 23 #be0f17 31 | neutral_green #98971a [ ] [ ] 106 [ 2][ 2] 152-151- 26 134-135- 21 #868715 32 | neutral_yellow #d79921 [ ] [ ] 172 [ 3][ 3] 215-153- 33 204-136- 26 #cc881a 33 | neutral_blue #458588 [ ] [ ] 66 [ 4][ 4] 69-133-136 55-115-117 #377375 34 | neutral_purple #b16286 [ ] [ ] 132 [ 5][ 5] 177- 98-134 160- 75-115 #a04b73 35 | neutral_aqua #689d6a [ ] [ ] 72 [ 6][ 6] 104-157-106 87-142- 87 #578e57 36 | neutral_orange #d65d0e [ ] [ ] 166 [ ][ ] 214- 93- 14 202- 72- 14 #ca480e 37 | 38 | faded_red #9d0006 [ ] [red] 88 [ ][ 9] 157- 0- 6 137- 0- 9 #890009 39 | faded_green #79740e [ ] [green] 100 [ ][10] 121-116- 14 102- 98- 13 #66620d 40 | faded_yellow #b57614 [ ][yellow] 136 [ ][11] 181-118- 20 165- 99- 17 #a56311 41 | faded_blue #076678 [ ] [blue] 24 [ ][12] 7-102-120 14- 83-101 #0e5365 42 | faded_purple #8f3f71 [ ][purple] 96 [ ][13] 143- 63-113 123- 43- 94 #7b2b5e 43 | faded_aqua #427b58 [ ] [aqua] 66 [ ][14] 66-123- 88 53-106- 70 #356a46 44 | faded_orange #af3a03 [ ][orange] 130 [ ][ ] 175- 58- 3 157- 40- 7 #9d2807 45 | -------------------------------------------------------------------------------- /console2/gruvbox-dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /console2/gruvbox-light.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /deepin-terminal/gruvbox_dark: -------------------------------------------------------------------------------- 1 | [theme] 2 | color_1=#282828 3 | color_2=#cc241d 4 | color_3=#98971a 5 | color_4=#d79921 6 | color_5=#458588 7 | color_6=#b16286 8 | color_7=#689d6a 9 | color_8=#a89984 10 | color_9=#928374 11 | color_10=#fb4934 12 | color_11=#b8bb26 13 | color_12=#fabd2f 14 | color_13=#83a598 15 | color_14=#d3869b 16 | color_15=#8ec07c 17 | color_16=#ebdbb2 18 | background=#282828 19 | foreground=#d5c4a1 20 | tab=#d5c4a1 21 | style=dark 22 | -------------------------------------------------------------------------------- /deepin-terminal/gruvbox_light: -------------------------------------------------------------------------------- 1 | [theme] 2 | color_1=#282828 3 | color_2=#cc241d 4 | color_3=#98971a 5 | color_4=#d79921 6 | color_5=#458588 7 | color_6=#b16286 8 | color_7=#689d6a 9 | color_8=#7c6f64 10 | color_9=#928374 11 | color_10=#9d0006 12 | color_11=#79740e 13 | color_12=#b57614 14 | color_13=#076678 15 | color_14=#8f3f71 16 | color_15=#427b58 17 | color_16=#3c3836 18 | background=#fbf1c7 19 | foreground=#3c3836 20 | tab=#3c3836 21 | style=light 22 | -------------------------------------------------------------------------------- /gedit/gruvbox-dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 25 | 26 | 27 | 28 | Jean-Patrick Guerrero 29 | <_description>Dark color scheme using the Gruvbox color palette 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 |