mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-20 01:40:14 -05:00
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:
parent
fcbb5a0bf7
commit
e9c3d03837
5 changed files with 84 additions and 15 deletions
8
config.h
8
config.h
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue