diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e5ffce0..93929ec8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +### Fixes + +- Kitty themes typo fixed #3 +- Change terminal background color to `bg` [fix #2] + +## [v0.0.1] - 9 Jul 2021 + ### Added - Initial release 🎊 - - - -[unreleased]: https://github.com/projekt0n/github-nvim-theme/tree/main +[unreleased]: https://github.com/projekt0n/github-nvim-theme/compare/v0.0.1...main +[v0.0.1]: https://github.com/projekt0n/github-nvim-theme/tree/v0.0.1 diff --git a/extras/alacritty_github_dark.yml b/extras/alacritty_github_dark.yml index 145c0d90..22755c06 100644 --- a/extras/alacritty_github_dark.yml +++ b/extras/alacritty_github_dark.yml @@ -2,7 +2,7 @@ colors: # Default colors primary: - background: '0x1f2428' + background: '0x24292e' foreground: '0xd1d5da' # Normal colors diff --git a/extras/alacritty_github_dimmed.yml b/extras/alacritty_github_dimmed.yml index 2a3b7f39..7b97490b 100644 --- a/extras/alacritty_github_dimmed.yml +++ b/extras/alacritty_github_dimmed.yml @@ -2,7 +2,7 @@ colors: # Default colors primary: - background: '0x1e2228' + background: '0x22272e' foreground: '0x768390' # Normal colors diff --git a/extras/alacritty_github_light.yml b/extras/alacritty_github_light.yml index f080d1af..f2bfe731 100644 --- a/extras/alacritty_github_light.yml +++ b/extras/alacritty_github_light.yml @@ -2,7 +2,7 @@ colors: # Default colors primary: - background: '0xf6f8fa' + background: '0xffffff' foreground: '0x586069' # Normal colors diff --git a/extras/kitty_github_dark.conf b/extras/kitty_github_dark.conf index c583b032..11d0a657 100644 --- a/extras/kitty_github_dark.conf +++ b/extras/kitty_github_dark.conf @@ -1,6 +1,6 @@ # github colors for Kitty -background #1f2428 +background #24292e foreground #d1d5da selection_background #284566 selection_foreground #d1d5da @@ -22,7 +22,7 @@ color3 #e2e210 color4 #3b8eea color5 #bc3fbc color6 #29b7da -molor7 #666666 +color7 #666666 # bright color8 #666666 diff --git a/extras/kitty_github_dimmed.conf b/extras/kitty_github_dimmed.conf index 43bdaaed..c2d13ddf 100644 --- a/extras/kitty_github_dimmed.conf +++ b/extras/kitty_github_dimmed.conf @@ -1,6 +1,6 @@ # github colors for Kitty -background #1e2228 +background #22272e foreground #768390 selection_background #264466 selection_foreground #768390 @@ -22,7 +22,7 @@ color3 #c69026 color4 #6cb6ff color5 #b083f0 color6 #56d4dd -molor7 #636e7b +color7 #636e7b # bright color8 #636e7b diff --git a/extras/kitty_github_light.conf b/extras/kitty_github_light.conf index 97616f95..fe5c534a 100644 --- a/extras/kitty_github_light.conf +++ b/extras/kitty_github_light.conf @@ -1,6 +1,6 @@ # github colors for Kitty -background #f6f8fa +background #ffffff foreground #586069 selection_background #dbe9f9 selection_foreground #586069 @@ -22,7 +22,7 @@ color3 #949800 color4 #0451a5 color5 #bc05bc color6 #0598BC -molor7 #666666 +color7 #666666 # bright color8 #666666 diff --git a/lua/github-theme/extra/alacritty.lua b/lua/github-theme/extra/alacritty.lua index 648513af..b0e96e7f 100644 --- a/lua/github-theme/extra/alacritty.lua +++ b/lua/github-theme/extra/alacritty.lua @@ -18,7 +18,7 @@ function M.alacritty(config) colors: # Default colors primary: - background: '${bg2}' + background: '${bg}' foreground: '${term_fg}' # Normal colors diff --git a/lua/github-theme/extra/kitty.lua b/lua/github-theme/extra/kitty.lua index 04b791b2..38abe8d1 100644 --- a/lua/github-theme/extra/kitty.lua +++ b/lua/github-theme/extra/kitty.lua @@ -11,7 +11,7 @@ function M.kitty(config) local kitty = util.template([[ # github colors for Kitty -background ${bg2} +background ${bg} foreground ${term_fg} selection_background ${bg_visual_selection} selection_foreground ${term_fg} @@ -33,7 +33,7 @@ color3 ${yellow} color4 ${blue} color5 ${magenta} color6 ${cyan} -molor7 ${fg_dark} +color7 ${fg_dark} # bright color8 ${fg_dark}