config: add colors.search-box-{no-,}match

Closes #1112
This commit is contained in:
Daniel Eklöf 2022-07-27 19:14:27 +02:00
parent 4873004c37
commit d79a3b9350
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
7 changed files with 85 additions and 7 deletions

View file

@ -217,11 +217,25 @@ struct config {
uint32_t bg;
} scrollback_indicator;
struct {
struct {
uint32_t fg;
uint32_t bg;
} no_match;
struct {
uint32_t fg;
uint32_t bg;
} match;
} search_box;
struct {
bool selection:1;
bool jump_label:1;
bool scrollback_indicator:1;
bool url:1;
bool search_box_no_match:1;
bool search_box_match:1;
uint8_t dim;
} use_custom;
} colors;