feat(theme): use gurvbox dark hard color scheme

This commit is contained in:
Anas Elgarhy 2023-08-30 06:40:12 +03:00
parent 8fbfe9006d
commit 5e4a0bb79b
No known key found for this signature in database
GPG Key ID: 0501802A1D496528
2 changed files with 29 additions and 1 deletions

View 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

View File

@ -25,13 +25,15 @@ static const char dmenufont[] = "monospace:size=8";
#endif
#include "colors/dracula.h"
#include "colors/gruvbox_dark_hard.h"
#include "archy_dwm.h"
// Autostart programs
static const char *const autostart[] = {
// Start my build of slstatus
"archy-slstatus", NULL,
// Start the terminal with tmux
TERMINAL, "-e", "tmux", NULL,
NULL /* terminate */
};