Skip to content

Commit 8e1cdd2

Browse files
authored
Merge pull request #6 from projekt0n/dev
Some terminal fixes
2 parents ac82651 + 9798135 commit 8e1cdd2

9 files changed

+21
-16
lines changed

CHANGELOG.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [unreleased]
99

10+
### Fixes
11+
12+
- Kitty themes typo fixed #3
13+
- Change terminal background color to `bg` [fix #2]
14+
15+
## [v0.0.1] - 9 Jul 2021
16+
1017
### Added
1118

1219
- Initial release 🎊
1320

14-
<!-- [unreleased]: https://github.com/projekt0n/github-nvim-theme/compare/v0.0.1...main -->
15-
<!-- [v0.0.1]: https://github.com/projekt0n/github-nvim-theme/tree/v0.0.1 -->
16-
17-
[unreleased]: https://github.com/projekt0n/github-nvim-theme/tree/main
21+
[unreleased]: https://github.com/projekt0n/github-nvim-theme/compare/v0.0.1...main
22+
[v0.0.1]: https://github.com/projekt0n/github-nvim-theme/tree/v0.0.1

extras/alacritty_github_dark.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
colors:
33
# Default colors
44
primary:
5-
background: '0x1f2428'
5+
background: '0x24292e'
66
foreground: '0xd1d5da'
77

88
# Normal colors

extras/alacritty_github_dimmed.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
colors:
33
# Default colors
44
primary:
5-
background: '0x1e2228'
5+
background: '0x22272e'
66
foreground: '0x768390'
77

88
# Normal colors

extras/alacritty_github_light.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
colors:
33
# Default colors
44
primary:
5-
background: '0xf6f8fa'
5+
background: '0xffffff'
66
foreground: '0x586069'
77

88
# Normal colors

extras/kitty_github_dark.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# github colors for Kitty
22

3-
background #1f2428
3+
background #24292e
44
foreground #d1d5da
55
selection_background #284566
66
selection_foreground #d1d5da
@@ -22,7 +22,7 @@ color3 #e2e210
2222
color4 #3b8eea
2323
color5 #bc3fbc
2424
color6 #29b7da
25-
molor7 #666666
25+
color7 #666666
2626

2727
# bright
2828
color8 #666666

extras/kitty_github_dimmed.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# github colors for Kitty
22

3-
background #1e2228
3+
background #22272e
44
foreground #768390
55
selection_background #264466
66
selection_foreground #768390
@@ -22,7 +22,7 @@ color3 #c69026
2222
color4 #6cb6ff
2323
color5 #b083f0
2424
color6 #56d4dd
25-
molor7 #636e7b
25+
color7 #636e7b
2626

2727
# bright
2828
color8 #636e7b

extras/kitty_github_light.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# github colors for Kitty
22

3-
background #f6f8fa
3+
background #ffffff
44
foreground #586069
55
selection_background #dbe9f9
66
selection_foreground #586069
@@ -22,7 +22,7 @@ color3 #949800
2222
color4 #0451a5
2323
color5 #bc05bc
2424
color6 #0598BC
25-
molor7 #666666
25+
color7 #666666
2626

2727
# bright
2828
color8 #666666

lua/github-theme/extra/alacritty.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function M.alacritty(config)
1818
colors:
1919
# Default colors
2020
primary:
21-
background: '${bg2}'
21+
background: '${bg}'
2222
foreground: '${term_fg}'
2323
2424
# Normal colors

lua/github-theme/extra/kitty.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function M.kitty(config)
1111
local kitty = util.template([[
1212
# github colors for Kitty
1313
14-
background ${bg2}
14+
background ${bg}
1515
foreground ${term_fg}
1616
selection_background ${bg_visual_selection}
1717
selection_foreground ${term_fg}
@@ -33,7 +33,7 @@ color3 ${yellow}
3333
color4 ${blue}
3434
color5 ${magenta}
3535
color6 ${cyan}
36-
molor7 ${fg_dark}
36+
color7 ${fg_dark}
3737
3838
# bright
3939
color8 ${fg_dark}

0 commit comments

Comments
 (0)