Back to Schemas

Gruvbox Dark

Retro groove color scheme with warm, earthy tones designed for long coding sessions

by Pavel Pertsev
darkwarmretropopular

Color Palette

color0
#282828
rgb(40, 40, 40)
color1
#cc241d
rgb(204, 36, 29)
color2
#98971a
rgb(152, 151, 26)
color3
#d79921
rgb(215, 153, 33)
color4
#458588
rgb(69, 133, 136)
color5
#b16286
rgb(177, 98, 134)
color6
#689d6a
rgb(104, 157, 106)
color7
#a89984
rgb(168, 153, 132)
color8
#928374
rgb(146, 131, 116)
color9
#fb4934
rgb(251, 73, 52)
color10
#b8bb26
rgb(184, 187, 38)
color11
#fabd2f
rgb(250, 189, 47)
color12
#83a598
rgb(131, 165, 152)
color13
#d3869b
rgb(211, 134, 155)
color14
#8ec07c
rgb(142, 192, 124)
color15
#ebdbb2
rgb(235, 219, 178)

Terminal Preview

See how this color scheme looks in a real terminal environment with syntax highlighting and command output.

Terminal Preview
user@host:~$ ls -la
total 48
drwxr-xr-x 12 user user 4096 Jan 15 10:30 .
drwxr-xr-x 24 user user 4096 Jan 10 08:15 ..
-rw-r--r-- 1 user user 220 Jan 10 08:15 .bashrc
drwxr-xr-x 3 user user 4096 Jan 12 14:22 .config
-rw-r--r-- 1 user user 3526 Jan 14 16:45 README.md
-rwxr-xr-x 1 user user 8192 Jan 15 09:30 build.sh
drwxr-xr-x 5 user user 4096 Jan 13 11:20 projects
-rw-r--r-- 1 user user 1024 Jan 11 13:00 notes.txt

user@host:~$ cat script.py
def greet(name):
 "Greet a user with their name"
 message = f"Hello, {name}!"
 return message

if __name__ == "__main__":
 result = greet("Ricing Enthusiast")
 print(result)

user@host:~$ npm run build

> coolema@1.0.0 build
> next build

 ▲ Next.js 14.0.0

 Creating an optimized production build
 Compiled successfully
 Linting and checking validity of types
 Collecting page data
 Generating static pages (8/8)
 Finalizing page optimization

Route (app) Size First Load JS
┌ ○ / 1.2 kB 85.3 kB
├ ○ /docs 890 B 84.1 kB
└ ○ /schemas 1.5 kB 86.6 kB

 (Static) prerendered as static content

user@host:~$ git status
On branch main
Your branch is up to date with 'origin/main'.

Changes to be committed:
 (use "git restore --staged <file>..." to unstage)
 modified: components/terminal-preview.tsx
 new file: content/schemas/custom-theme.mdx

user@host:~$ 

Export Configuration

# Kitty Color Scheme
foreground #a89984
background #282828

# Black
color0 #282828
color8 #928374

# Red
color1 #cc241d
color9 #fb4934

# Green
color2 #98971a
color10 #b8bb26

# Yellow
color3 #d79921
color11 #fabd2f

# Blue
color4 #458588
color12 #83a598

# Magenta
color5 #b16286
color13 #d3869b

# Cyan
color6 #689d6a
color14 #8ec07c

# White
color7 #a89984
color15 #ebdbb2

Related Schemas