Skip to content

Commit

Permalink
Merge pull request #6 from projekt0n/dev
Browse files Browse the repository at this point in the history
Some terminal fixes
  • Loading branch information
ful1e5 committed Jul 9, 2021
2 parents ac82651 + 9798135 commit 8e1cdd2
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 16 deletions.
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/compare/v0.0.1...main -->
<!-- [v0.0.1]: https://github.com/projekt0n/github-nvim-theme/tree/v0.0.1 -->

[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
2 changes: 1 addition & 1 deletion extras/alacritty_github_dark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
colors:
# Default colors
primary:
background: '0x1f2428'
background: '0x24292e'
foreground: '0xd1d5da'

# Normal colors
Expand Down
2 changes: 1 addition & 1 deletion extras/alacritty_github_dimmed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
colors:
# Default colors
primary:
background: '0x1e2228'
background: '0x22272e'
foreground: '0x768390'

# Normal colors
Expand Down
2 changes: 1 addition & 1 deletion extras/alacritty_github_light.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
colors:
# Default colors
primary:
background: '0xf6f8fa'
background: '0xffffff'
foreground: '0x586069'

# Normal colors
Expand Down
4 changes: 2 additions & 2 deletions extras/kitty_github_dark.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# github colors for Kitty

background #1f2428
background #24292e
foreground #d1d5da
selection_background #284566
selection_foreground #d1d5da
Expand All @@ -22,7 +22,7 @@ color3 #e2e210
color4 #3b8eea
color5 #bc3fbc
color6 #29b7da
molor7 #666666
color7 #666666

# bright
color8 #666666
Expand Down
4 changes: 2 additions & 2 deletions extras/kitty_github_dimmed.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# github colors for Kitty

background #1e2228
background #22272e
foreground #768390
selection_background #264466
selection_foreground #768390
Expand All @@ -22,7 +22,7 @@ color3 #c69026
color4 #6cb6ff
color5 #b083f0
color6 #56d4dd
molor7 #636e7b
color7 #636e7b

# bright
color8 #636e7b
Expand Down
4 changes: 2 additions & 2 deletions extras/kitty_github_light.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# github colors for Kitty

background #f6f8fa
background #ffffff
foreground #586069
selection_background #dbe9f9
selection_foreground #586069
Expand All @@ -22,7 +22,7 @@ color3 #949800
color4 #0451a5
color5 #bc05bc
color6 #0598BC
molor7 #666666
color7 #666666

# bright
color8 #666666
Expand Down
2 changes: 1 addition & 1 deletion lua/github-theme/extra/alacritty.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function M.alacritty(config)
colors:
# Default colors
primary:
background: '${bg2}'
background: '${bg}'
foreground: '${term_fg}'
# Normal colors
Expand Down
4 changes: 2 additions & 2 deletions lua/github-theme/extra/kitty.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand All @@ -33,7 +33,7 @@ color3 ${yellow}
color4 ${blue}
color5 ${magenta}
color6 ${cyan}
molor7 ${fg_dark}
color7 ${fg_dark}
# bright
color8 ${fg_dark}
Expand Down

0 comments on commit 8e1cdd2

Please sign in to comment.