Skip to content

Commit

Permalink
Merge pull request #7 from projekt0n/dev
Browse files Browse the repository at this point in the history
fixed #5: Folds are too bright
  • Loading branch information
ful1e5 committed Jul 9, 2021
2 parents 8e1cdd2 + 42a6fa9 commit ca6a37e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixes

- Kitty themes typo fixed #3
- Change terminal background color to `bg` [fix #2]
- Change terminal background color to `bg` #2
- Fold Bright background fixed #5

## [v0.0.1] - 9 Jul 2021

Expand Down
4 changes: 2 additions & 2 deletions lua/github-theme/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ function M.setup(config)
-- TermCursorNC= { }, -- cursor in an unfocused terminal
ErrorMsg = {fg = c.error}, -- error messages on the command line
VertSplit = {fg = c.bg_visual, bg = c.bg}, -- the column separating vertically split windows
Folded = {fg = c.blue, bg = c.fg_gutter}, -- line used for closed folds
FoldColumn = {bg = c.bg, fg = c.fg_gutter}, -- 'foldcolumn'
Folded = {fg = c.fg, bg = c.bg_visual_selection}, -- line used for closed folds
FoldColumn = {bg = c.fg, fg = c.bg_visual_selection}, -- 'foldcolumn'
SignColumn = {bg = config.transparent and c.none or c.bg, fg = c.fg_gutter}, -- column where |signs| are displayed
SignColumnSB = {bg = c.bg_sidebar, fg = c.fg_gutter}, -- column where |signs| are displayed
Substitute = {bg = c.red, fg = c.black}, -- |:substitute| replacement text highlighting
Expand Down

0 comments on commit ca6a37e

Please sign in to comment.