Last active
December 23, 2024 04:51
-
-
Save sainnhe/ad5cbc4f05c4ced83f80e54d9a75d22f to your computer and use it in GitHub Desktop.
Gruvbox Material for Alacritty
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The definition of color schemes. | |
schemes: | |
gruvbox_material_hard_dark: &gruvbox_material_hard_dark | |
primary: | |
background: '0x1d2021' | |
foreground: '0xd4be98' | |
normal: | |
black: '0x32302f' | |
red: '0xea6962' | |
green: '0xa9b665' | |
yellow: '0xd8a657' | |
blue: '0x7daea3' | |
magenta: '0xd3869b' | |
cyan: '0x89b482' | |
white: '0xd4be98' | |
bright: | |
black: '0x32302f' | |
red: '0xea6962' | |
green: '0xa9b665' | |
yellow: '0xd8a657' | |
blue: '0x7daea3' | |
magenta: '0xd3869b' | |
cyan: '0x89b482' | |
white: '0xd4be98' | |
gruvbox_material_medium_dark: &gruvbox_material_medium_dark | |
primary: | |
background: '0x282828' | |
foreground: '0xd4be98' | |
normal: | |
black: '0x3c3836' | |
red: '0xea6962' | |
green: '0xa9b665' | |
yellow: '0xd8a657' | |
blue: '0x7daea3' | |
magenta: '0xd3869b' | |
cyan: '0x89b482' | |
white: '0xd4be98' | |
bright: | |
black: '0x3c3836' | |
red: '0xea6962' | |
green: '0xa9b665' | |
yellow: '0xd8a657' | |
blue: '0x7daea3' | |
magenta: '0xd3869b' | |
cyan: '0x89b482' | |
white: '0xd4be98' | |
gruvbox_material_soft_dark: &gruvbox_material_soft_dark | |
primary: | |
background: '0x32302f' | |
foreground: '0xd4be98' | |
normal: | |
black: '0x45403d' | |
red: '0xea6962' | |
green: '0xa9b665' | |
yellow: '0xd8a657' | |
blue: '0x7daea3' | |
magenta: '0xd3869b' | |
cyan: '0x89b482' | |
white: '0xd4be98' | |
bright: | |
black: '0x45403d' | |
red: '0xea6962' | |
green: '0xa9b665' | |
yellow: '0xd8a657' | |
blue: '0x7daea3' | |
magenta: '0xd3869b' | |
cyan: '0x89b482' | |
white: '0xd4be98' | |
gruvbox_material_hard_light: &gruvbox_material_hard_light | |
primary: | |
background: '0xf9f5d7' | |
foreground: '0x654735' | |
normal: | |
black: '0x654735' | |
red: '0xc14a4a' | |
green: '0x6c782e' | |
yellow: '0xb47109' | |
blue: '0x45707a' | |
magenta: '0x945e80' | |
cyan: '0x4c7a5d' | |
white: '0xf2e5bc' | |
bright: | |
black: '0x654735' | |
red: '0xc14a4a' | |
green: '0x6c782e' | |
yellow: '0xb47109' | |
blue: '0x45707a' | |
magenta: '0x945e80' | |
cyan: '0x4c7a5d' | |
white: '0xf2e5bc' | |
gruvbox_material_medium_light: &gruvbox_material_medium_light | |
primary: | |
background: '0xfbf1c7' | |
foreground: '0x654735' | |
normal: | |
black: '0x654735' | |
red: '0xc14a4a' | |
green: '0x6c782e' | |
yellow: '0xb47109' | |
blue: '0x45707a' | |
magenta: '0x945e80' | |
cyan: '0x4c7a5d' | |
white: '0xeee0b7' | |
bright: | |
black: '0x654735' | |
red: '0xc14a4a' | |
green: '0x6c782e' | |
yellow: '0xb47109' | |
blue: '0x45707a' | |
magenta: '0x945e80' | |
cyan: '0x4c7a5d' | |
white: '0xeee0b7' | |
gruvbox_material_soft_light: &gruvbox_material_soft_light | |
primary: | |
background: '0xf2e5bc' | |
foreground: '0x654735' | |
normal: | |
black: '0x654735' | |
red: '0xc14a4a' | |
green: '0x6c782e' | |
yellow: '0xb47109' | |
blue: '0x45707a' | |
magenta: '0x945e80' | |
cyan: '0x4c7a5d' | |
white: '0xe6d5ae' | |
bright: | |
black: '0x654735' | |
red: '0xc14a4a' | |
green: '0x6c782e' | |
yellow: '0xb47109' | |
blue: '0x45707a' | |
magenta: '0x945e80' | |
cyan: '0x4c7a5d' | |
white: '0xe6d5ae' | |
# Apply the color scheme. | |
colors: *gruvbox_material_medium_dark |
Thanks man
For anyone wondering, I'd rather use the "official" gruvbox theme from alacritty. It's a lot shorter and in TOML.
"it's a lot shorter" well this is shorter too, it just gives you more flavours to choose from. you can simply copy/paste the theme of your choice and port it to toml with little to no effort
For anyone wondering, I'd rather use the "official" gruvbox theme from alacritty. It's a lot shorter and in TOML.
"it's a lot shorter" well this is shorter too, it just gives you more flavours to choose from. you can simply copy/paste the theme of your choice and port it to toml with little to no effort
okay man
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For anyone wondering, I'd rather use the "official" gruvbox theme from alacritty. It's a lot shorter and in TOML.