Created
November 6, 2024 15:16
-
-
Save crazyoptimist/ffcb32f48ca31edf9287bb4da7a2a1f4 to your computer and use it in GitHub Desktop.
DWM Color Scheme - Gruvbox Dark
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
// ... snip ... | |
/* https://github.com/morhetz/gruvbox */ | |
static const char col_normfg[] = "#fbf1c7"; /* fg0 */ | |
static const char col_normbg[] = "#282828"; /* bg0 */ | |
static const char col_normborder[] = "#504945"; /* bg2 */ | |
static const char col_selfg[] = "#1d2021"; /* bg0_h */ | |
static const char col_selbg[] = "#98971a"; /* green */ | |
static const char col_selborder[] = "#b8bb26"; /* light green */ | |
static const char *colors[][3] = { | |
/* fg bg border */ | |
[SchemeNorm] = {col_normfg, col_normbg, col_normborder}, | |
[SchemeSel] = {col_selfg, col_selbg, col_selborder}, | |
}; | |
// ... snip ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment