feat(theme): use gurvbox dark hard color scheme
This commit is contained in:
parent
8fbfe9006d
commit
5e4a0bb79b
2 changed files with 29 additions and 1 deletions
26
src/colors/gruvbox_dark_hard.h
Normal file
26
src/colors/gruvbox_dark_hard.h
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
//
|
||||||
|
// Created by anas on 08/28/23.
|
||||||
|
//
|
||||||
|
#ifndef GRUVBOX_DARK_HARD_H
|
||||||
|
#define GRUVBOX_DARK_HARD_H
|
||||||
|
|
||||||
|
static const char norm_fg[] = "#EBDBB2"; // light1
|
||||||
|
static const char norm_bg[] = "#1D2021"; // dark0_hard
|
||||||
|
static const char norm_border[] = "#504945"; // dark2
|
||||||
|
|
||||||
|
static const char sel_fg[] = "#FE8019"; // bright_orange
|
||||||
|
static const char sel_bg[] = "#1D2021"; // dark0_hard
|
||||||
|
static const char sel_border[] = "#7C6F64"; // dark4
|
||||||
|
|
||||||
|
static const char urg_fg[] = "#D5C4A1"; // light4
|
||||||
|
static const char urg_bg[] = "#FB4934"; // bright_red
|
||||||
|
static const char urg_border[] = "#458588"; // neutral_blue
|
||||||
|
|
||||||
|
static const char *colors[][3] = {
|
||||||
|
/* fg bg border */
|
||||||
|
[SchemeNorm] = {norm_fg, norm_bg, norm_border}, // unfocused wins
|
||||||
|
[SchemeSel] = {sel_fg, sel_bg, sel_border}, // the focused win
|
||||||
|
[SchemeUrg] = {urg_fg, urg_bg, urg_border},
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif //GRUVBOX_DARK_HARD_H
|
|
@ -25,13 +25,15 @@ static const char dmenufont[] = "monospace:size=8";
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "colors/dracula.h"
|
#include "colors/gruvbox_dark_hard.h"
|
||||||
#include "archy_dwm.h"
|
#include "archy_dwm.h"
|
||||||
|
|
||||||
// Autostart programs
|
// Autostart programs
|
||||||
static const char *const autostart[] = {
|
static const char *const autostart[] = {
|
||||||
// Start my build of slstatus
|
// Start my build of slstatus
|
||||||
"archy-slstatus", NULL,
|
"archy-slstatus", NULL,
|
||||||
|
// Start the terminal with tmux
|
||||||
|
TERMINAL, "-e", "tmux", NULL,
|
||||||
NULL /* terminate */
|
NULL /* terminate */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue