diff options
| author | awy <awy@awy.one> | 2025-11-12 23:07:36 +0300 |
|---|---|---|
| committer | awy <awy@awy.one> | 2025-11-12 23:07:36 +0300 |
| commit | 1f2686b9618810cf8662b8f3404ef2d4745c3ba6 (patch) | |
| tree | c88f689f6e9a8691303695783e3355b95ce986e8 | |
| parent | 30dee8ecd8d4e0ee21c0b53f27b342b2c5f17b7e (diff) | |
| download | dwlb-1f2686b9618810cf8662b8f3404ef2d4745c3ba6.tar.gz | |
colors
| -rw-r--r-- | config.def.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index 0abc492..446c367 100644 --- a/config.def.h +++ b/config.def.h @@ -31,7 +31,19 @@ static char *tags_names[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; // set 16-bit colors for bar // use either pixman_color_t struct or HEX_COLOR macro for 8-bit colors -static pixman_color_t active_fg_color = HEX_COLOR(0xeeeeeeff); +static pixman_color_t active_fg_color = HEX_COLOR(0xeceff4ff); +static pixman_color_t active_bg_color = HEX_COLOR(0x4c566aff); +static pixman_color_t occupied_fg_color = HEX_COLOR(0xeceff4ff); +static pixman_color_t occupied_bg_color = HEX_COLOR(0x2e3440ff); +static pixman_color_t inactive_fg_color = HEX_COLOR(0xeceff4ff); +static pixman_color_t inactive_bg_color = HEX_COLOR(0x2e3440ff); +static pixman_color_t urgent_fg_color = HEX_COLOR(0x222222ff); +static pixman_color_t urgent_bg_color = HEX_COLOR(0xeeeeeeff); +static pixman_color_t middle_bg_color = HEX_COLOR(0x2e3440ff); +static pixman_color_t middle_bg_color_selected = HEX_COLOR(0x4c566aff); + +/* og colorscheme */ +/* static pixman_color_t active_fg_color = HEX_COLOR(0xeeeeeeff); static pixman_color_t active_bg_color = HEX_COLOR(0x005577ff); static pixman_color_t occupied_fg_color = HEX_COLOR(0xeeeeeeff); static pixman_color_t occupied_bg_color = HEX_COLOR(0x005577ff); @@ -40,4 +52,4 @@ static pixman_color_t inactive_bg_color = HEX_COLOR(0x222222ff); static pixman_color_t urgent_fg_color = HEX_COLOR(0x222222ff); static pixman_color_t urgent_bg_color = HEX_COLOR(0xeeeeeeff); static pixman_color_t middle_bg_color = HEX_COLOR(0x222222ff); -static pixman_color_t middle_bg_color_selected = HEX_COLOR(0x005577ff); +static pixman_color_t middle_bg_color_selected = HEX_COLOR(0x005577ff); */ |