add custom highlight colors

This commit is contained in:
Piotr Kocia 2025-06-17 01:47:42 +02:00
parent 95090f0264
commit fa2b08846b
6 changed files with 28 additions and 28 deletions

View file

@ -140,6 +140,8 @@ struct color_theme {
uint16_t alpha;
uint32_t selection_fg;
uint32_t selection_bg;
uint32_t highlight_fg;
uint32_t highlight_bg;
uint32_t url;
uint32_t dim[8];
@ -183,11 +185,6 @@ struct color_theme {
} match;
} search_box;
struct {
uint32_t fg;
uint32_t bg;
} highlights;
struct {
bool cursor:1;
bool jump_label:1;
@ -195,7 +192,6 @@ struct color_theme {
bool url:1;
bool search_box_no_match:1;
bool search_box_match:1;
bool highlights:1;
uint8_t dim;
} use_custom;
};