mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
themes: starlight: update to V4
This also updates the default theme in foot, as well as the documentation. Closes #1409
This commit is contained in:
parent
023a1b8da6
commit
27b4c2ac2d
5 changed files with 53 additions and 50 deletions
|
|
@ -50,6 +50,9 @@
|
||||||
* When window is mapped, use metadata (DPI, scaling factor, subpixel
|
* When window is mapped, use metadata (DPI, scaling factor, subpixel
|
||||||
configuration) from the monitor we were most recently mapped on,
|
configuration) from the monitor we were most recently mapped on,
|
||||||
instead of the one least recently.
|
instead of the one least recently.
|
||||||
|
* Starlight theme (the default theme) updated to [V4][starlight-v4]
|
||||||
|
|
||||||
|
[starlight-v4]: https://github.com/CosmicToast/starlight/blob/v4/CHANGELOG.md#v4
|
||||||
|
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
|
|
||||||
24
config.c
24
config.c
|
|
@ -49,22 +49,22 @@ static const size_t min_csd_border_width = 5;
|
||||||
static const uint32_t default_color_table[256] = {
|
static const uint32_t default_color_table[256] = {
|
||||||
// Regular
|
// Regular
|
||||||
0x242424,
|
0x242424,
|
||||||
0xcf1745,
|
0xf62b5a,
|
||||||
0x3ecf5b,
|
0x47b413,
|
||||||
0xcfcf17,
|
0xe3c401,
|
||||||
0x0ba6da,
|
0x24acd4,
|
||||||
0xd926ac,
|
0xf2affd,
|
||||||
0x17cfa1,
|
0x13c299,
|
||||||
0xe6e6e6,
|
0xe6e6e6,
|
||||||
|
|
||||||
// Bright
|
// Bright
|
||||||
0x616161,
|
0x616161,
|
||||||
0xff1a53,
|
0xff4d51,
|
||||||
0x17e640,
|
0x35d450,
|
||||||
0xecff1a,
|
0xe9e836,
|
||||||
0x1ac6ff,
|
0x5dc5f8,
|
||||||
0xf53dc7,
|
0xfeabf2,
|
||||||
0x1affc6,
|
0x24dfc4,
|
||||||
0xffffff,
|
0xffffff,
|
||||||
|
|
||||||
// 6x6x6 RGB cube
|
// 6x6x6 RGB cube
|
||||||
|
|
|
||||||
|
|
@ -563,15 +563,15 @@ can configure the background transparency with the _alpha_ option.
|
||||||
|
|
||||||
*regular0*, *regular1* *..* *regular7*
|
*regular0*, *regular1* *..* *regular7*
|
||||||
The eight basic ANSI colors (Black, Red, Green, Yellow, Blue,
|
The eight basic ANSI colors (Black, Red, Green, Yellow, Blue,
|
||||||
Magenta, Cyan, White). Default: _242424_, _cf1745_, _3ecf5b_,
|
Magenta, Cyan, White). Default: _242424_, _f62b5a_, _47b413_,
|
||||||
_cfcf17_, _0ba6da_, _d926ac_, _17cfa1_, _e6e6e6_ (starlight
|
_e3c401_, _24acd4_, _f2affd_, _13c299_, _e6e6e6_ (starlight
|
||||||
theme).
|
theme, V4).
|
||||||
|
|
||||||
*bright0*, *bright1* *..* *bright7*
|
*bright0*, *bright1* *..* *bright7*
|
||||||
The eight bright ANSI colors (Black, Red, Green, Yellow, Blue,
|
The eight bright ANSI colors (Black, Red, Green, Yellow, Blue,
|
||||||
Magenta, Cyan, White). Default: _616161_, _ff1a53_, _17e640_,
|
Magenta, Cyan, White). Default: _616161_, _ff4d51_, _35d450_,
|
||||||
_ecff1a_, _1ac6ff_, _f53dc7_, _1affc6_, _ffffff_ (starlight
|
_e9e836_, _5dc5f8_, _feabf2_, _24dfc4_, _ffffff_ (starlight
|
||||||
theme).
|
theme, V4).
|
||||||
|
|
||||||
*dim0*, *dim1* *..* *dim7*
|
*dim0*, *dim1* *..* *dim7*
|
||||||
Custom colors to use with dimmed colors. Dimmed colors do not have
|
Custom colors to use with dimmed colors. Dimmed colors do not have
|
||||||
|
|
|
||||||
34
foot.ini
34
foot.ini
|
|
@ -75,27 +75,27 @@
|
||||||
|
|
||||||
[colors]
|
[colors]
|
||||||
# alpha=1.0
|
# alpha=1.0
|
||||||
# background=002b36
|
# background=242424
|
||||||
# foreground=839496
|
# foreground=ffffff
|
||||||
|
|
||||||
## Normal/regular colors (color palette 0-7)
|
## Normal/regular colors (color palette 0-7)
|
||||||
# regular0=073642 # black
|
# regular0=242424 # black
|
||||||
# regular1=dc322f # red
|
# regular1=f62b5a # red
|
||||||
# regular2=859900 # green
|
# regular2=47b413 # green
|
||||||
# regular3=b58900 # yellow
|
# regular3=e3c401 # yellow
|
||||||
# regular4=268bd2 # blue
|
# regular4=24acd4 # blue
|
||||||
# regular5=d33682 # magenta
|
# regular5=f2affd # magenta
|
||||||
# regular6=2aa198 # cyan
|
# regular6=13c299 # cyan
|
||||||
# regular7=eee8d5 # white
|
# regular7=e6e6e6 # white
|
||||||
|
|
||||||
## Bright colors (color palette 8-15)
|
## Bright colors (color palette 8-15)
|
||||||
# bright0=08404f # bright black
|
# bright0=616161 # bright black
|
||||||
# bright1=e35f5c # bright red
|
# bright1=ff4d51 # bright red
|
||||||
# bright2=9fb700 # bright green
|
# bright2=35d450 # bright green
|
||||||
# bright3=d9a400 # bright yellow
|
# bright3=e9e836 # bright yellow
|
||||||
# bright4=4ba1de # bright blue
|
# bright4=5dc5f8 # bright blue
|
||||||
# bright5=dc619d # bright magenta
|
# bright5=feabf2 # bright magenta
|
||||||
# bright6=32c1b6 # bright cyan
|
# bright6=24dfc4 # bright cyan
|
||||||
# bright7=ffffff # bright white
|
# bright7=ffffff # bright white
|
||||||
|
|
||||||
## dimmed colors (see foot.ini(5) man page)
|
## dimmed colors (see foot.ini(5) man page)
|
||||||
|
|
|
||||||
|
|
@ -1,24 +1,24 @@
|
||||||
# -*- conf -*-
|
# -*- conf -*-
|
||||||
# Theme: starlight (https://github.com/CosmicToast/starlight)
|
# Theme: starlight V4 (https://github.com/CosmicToast/starlight)
|
||||||
|
|
||||||
[colors]
|
[colors]
|
||||||
foreground = FFFFFF
|
foreground = FFFFFF
|
||||||
background = 242424
|
background = 242424
|
||||||
|
|
||||||
regular0 = 242424
|
regular0 = 242424
|
||||||
regular1 = CF1745
|
regular1 = f62b5a
|
||||||
regular2 = 3ECF5B
|
regular2 = 47b413
|
||||||
regular3 = CFCF17
|
regular3 = e3c401
|
||||||
regular4 = 0BA6DA
|
regular4 = 24acd4
|
||||||
regular5 = D926AC
|
regular5 = f2affd
|
||||||
regular6 = 17CFA1
|
regular6 = 13c299
|
||||||
regular7 = E6E6E6
|
regular7 = e6e6e6
|
||||||
|
|
||||||
bright0 = 616161
|
bright0 = 616161
|
||||||
bright1 = FF1A53
|
bright1 = ff4d51
|
||||||
bright2 = 17E640
|
bright2 = 35d450
|
||||||
bright3 = ECFF1A
|
bright3 = e9e836
|
||||||
bright4 = 1AC6FF
|
bright4 = 5dc5f8
|
||||||
bright5 = F53DC7
|
bright5 = feabf2
|
||||||
bright6 = 1AFFC6
|
bright6 = 24dfc4
|
||||||
bright7 = FFFFFF
|
bright7 = ffffff
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue