diff options
| author | Robert Günzler <r@gnzler.io> | 2021-11-02 18:03:18 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-11-02 19:06:50 +0100 |
| commit | a82662f17e2cc5393fad81164fcb77e5493a6d4e (patch) | |
| tree | 8c80bc51cb12e8b81ee57753587ac8d23d070c2c | |
| parent | 41d37a1f876177413a8fb93cc80b61555306a11c (diff) | |
foot: split out colors
| -rw-r--r-- | .config/foot/color_palette.ini | 27 | ||||
| -rw-r--r-- | .config/foot/color_palette.ini.in | 27 | ||||
| -rw-r--r-- | .config/foot/foot.ini | 36 |
3 files changed, 61 insertions, 29 deletions
diff --git a/.config/foot/color_palette.ini b/.config/foot/color_palette.ini new file mode 100644 index 0000000..bcdbea9 --- /dev/null +++ b/.config/foot/color_palette.ini @@ -0,0 +1,27 @@ +[colors] +alpha=0.95 + +background=1c1c1c +foreground=bdc0ba + +regular0=1c1c1c +regular1=db4d6d +regular2=5dac81 +regular3=fad689 +regular4=58b2dc +regular5=b28fce +regular6=78c2c4 +regular7=bdc0ba +bright0=0c0c0c +bright1=cb1b45 +bright2=24936e +bright3=f7d94c +bright4=2ea9df +bright5=986db2 +bright6=81c7d4 +bright7=fffffb + +selection-background=ddd23b +selection-foreground=1c1c1c +jump-labels=bdc0ba 2ea9df +urls=2ea9df diff --git a/.config/foot/color_palette.ini.in b/.config/foot/color_palette.ini.in new file mode 100644 index 0000000..77135ea --- /dev/null +++ b/.config/foot/color_palette.ini.in @@ -0,0 +1,27 @@ +[colors] +alpha=0.95 + +background={{ hex_noprefix .normal_black }} +foreground={{ hex_noprefix .normal_white }} + +regular0={{ hex_noprefix .normal_black }} +regular1={{ hex_noprefix .normal_red }} +regular2={{ hex_noprefix .normal_green }} +regular3={{ hex_noprefix .normal_yellow }} +regular4={{ hex_noprefix .normal_blue }} +regular5={{ hex_noprefix .normal_magenta }} +regular6={{ hex_noprefix .normal_cyan }} +regular7={{ hex_noprefix .normal_white }} +bright0={{ hex_noprefix .bright_black }} +bright1={{ hex_noprefix .bright_red }} +bright2={{ hex_noprefix .bright_green }} +bright3={{ hex_noprefix .bright_yellow }} +bright4={{ hex_noprefix .bright_blue }} +bright5={{ hex_noprefix .bright_magenta }} +bright6={{ hex_noprefix .bright_cyan }} +bright7={{ hex_noprefix .bright_white }} + +selection-background=ddd23b +selection-foreground={{ hex_noprefix .normal_black }} +jump-labels={{ hex_noprefix .normal_white }} {{ hex_noprefix .bright_blue }} +urls={{ hex_noprefix .bright_blue }} diff --git a/.config/foot/foot.ini b/.config/foot/foot.ini index a48f576..adf991b 100644 --- a/.config/foot/foot.ini +++ b/.config/foot/foot.ini @@ -4,12 +4,16 @@ font=Iosevka SS08:size=12,Sarasa Fixed J:size=12,Material Design Icons Desktop dpi-aware=no bold-text-in-bright=no +box-drawings-uses-font-glyphs=no +# underline-offset=1px + +include=~/.config/foot/color_palette.ini [bell] urgent=yes notify=no -command=beep -b -command-focused=beep -b +#command=beep -b +#command-focused=beep -b [scrollback] lines=1000 @@ -51,32 +55,6 @@ commit=Return cancel=Escape toggle-url-visible=t -[colors] -background=1c1c1c -foreground=bdc0ba - -regular0=1c1c1c -regular1=e03c8a -regular2=90b44b -regular3=caad5f -regular4=58b2dc -regular5=828282 -regular6=e3916e -regular7=bdc0ba -bright0=535953 -bright1=86c166 -bright2=ddd23b -bright3=b28fce -bright4=ffb11b -bright5=66bab7 -bright6=77969a -bright7=fffffb - -selection-background=ddd23b -selection-foreground=1c1c1c -jump-labels=58b2dc fffffb -urls=66bab7 -alpha=0.95 - [tweak] grapheme-shaping=yes +overflowing-glyphs=yes |