config: add colors.jump_labels and colors.urls

* colors.jump_labels configures the foreground and background colors
  used when rendering URL jump labels. Defaults to “regular0
  regular3” (i.e. black on yellow).

* colors.urls configures the color to use when highlighting URLs in
  URL mode. Note that we aren’t currently doing any
  highlighting... Defaults to regular3 (i.e. yellow).
This commit is contained in:
Daniel Eklöf 2021-02-06 11:10:40 +01:00
parent fcbb5a0bf7
commit e9c3d03837
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
5 changed files with 84 additions and 15 deletions

View file

@ -139,9 +139,17 @@ struct config {
uint16_t alpha;
uint32_t selection_fg;
uint32_t selection_bg;
uint32_t url;
struct {
uint32_t fg;
uint32_t bg;
} jump_label;
struct {
bool selection:1;
bool jump_label:1;
bool url:1;
} use_custom;
} colors;