1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-22 21:01:36 +03:00

sync color schemes

Sync with upstream: ba8c68f212
closes: https://github.com/wez/wezterm/pull/1767
This commit is contained in:
Wez Furlong 2022-03-30 20:45:28 -07:00
parent 53c47143fd
commit e23e972c5c
4 changed files with 16 additions and 1 deletions

View File

@ -5,6 +5,8 @@ background = "#0d1926"
cursor_bg = "#d9e6f2"
cursor_border = "#d9e6f2"
cursor_fg = "#0d1926"
selection_bg = "#c1ddff"
selection_fg = "#000000"
ansi = ["#000000","#b87a7a","#7ab87a","#b8b87a","#7a7ab8","#b87ab8","#7ab8b8","#d9d9d9"]
brights = ["#262626","#dbbdbd","#bddbbd","#dbdbbd","#bdbddb","#dbbddb","#bddbdb","#ffffff"]

View File

@ -4,7 +4,7 @@ foreground = "#8b949e"
background = "#101216"
cursor_bg = "#c9d1d9"
cursor_border = "#c9d1d9"
cursor_fg = "#ffffff"
cursor_fg = "#101216"
selection_bg = "#3b5070"
selection_fg = "#ffffff"

12
assets/colors/Retro.toml Normal file
View File

@ -0,0 +1,12 @@
# Retro
[colors]
foreground = "#13a10e"
background = "#000000"
cursor_bg = "#13a10e"
cursor_border = "#13a10e"
cursor_fg = "#000000"
selection_bg = "#ffffff"
selection_fg = "#000000"
ansi = ["#13a10e","#13a10e","#13a10e","#13a10e","#13a10e","#13a10e","#13a10e","#13a10e"]
brights = ["#16ba10","#16ba10","#16ba10","#16ba10","#16ba10","#16ba10","#16ba10","#16ba10"]

View File

@ -19,6 +19,7 @@ As features stabilize some brief notes about them will accumulate here.
* On macOS, non-native fullscreen mode now attempts to avoid the notch on systems that have one. [#1737](https://github.com/wez/wezterm/issues/1737)
* Sixel parsing performance has been improved
* You may now [specify a scaling factor per fallback font](config/lua/wezterm/font_with_fallback.md#manual-fallback-scaling), which is useful when your preferred CJK font renders smaller than your Roman primary font, for example.
* Color schemes: [Retro](colorschemes/r/index.md#retro), [GitHub Dark](colorschemes/g/index.md#github-dark), [Blazer](colorschemes/b/index.md#blazer)
#### Fixed
* Incorrect csi-u encoding with non-ascii characters. [#1746](https://github.com/wez/wezterm/issues/1746)