archy-dwm/src/colors/dracula.h

29 lines
885 B
C
Raw Normal View History

2022-10-31 15:08:04 +00:00
//
// Created by anas on 10/31/22.
//
// inspired from: https://github.com/0x73hahd/dwm-config/blob/dev/source/colors/dracula.h
2022-07-18 04:28:01 +00:00
2022-10-31 15:08:04 +00:00
#ifndef DRACULA_H
#define DRACULA_H
2022-07-17 12:54:22 +00:00
2022-10-31 15:08:04 +00:00
static const char norm_fg[] = "#ff79c6";
static const char norm_bg[] = "#282a36";
static const char norm_border[] = "#282a36";
static const char sel_fg[] = "#ffb86c";
static const char sel_bg[] = "#282a36";
static const char sel_border[] = "#ffb86c";
2022-07-17 12:54:22 +00:00
static const char urg_fg[] = "#e4ded4";
2022-08-02 09:59:09 +00:00
static const char urg_bg[] = "#313036";
static const char urg_border[] = "#312e36";
2022-07-17 12:54:22 +00:00
2022-10-31 11:32:01 +00:00
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},
2022-07-17 12:54:22 +00:00
};
2022-07-18 04:28:01 +00:00
2022-10-31 15:08:04 +00:00
#endif //DRACULA_H