highlight colors

This commit is contained in:
Piotr Kocia 2025-03-31 23:27:23 +02:00
parent 2609206c98
commit 68685fdf13
4 changed files with 49 additions and 22 deletions

View file

@ -184,6 +184,11 @@ struct color_theme {
} match;
} search_box;
struct {
uint32_t fg;
uint32_t bg;
} highlights;
struct {
bool cursor:1;
bool jump_label:1;
@ -191,6 +196,7 @@ 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;
};