From 1f2686b9618810cf8662b8f3404ef2d4745c3ba6 Mon Sep 17 00:00:00 2001 From: awy Date: Wed, 12 Nov 2025 23:07:36 +0300 Subject: colors --- config.def.h | 16 ++++++++++++++-- 1 file 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); */ -- cgit v1.2.3