Skip to content

Commit

Permalink
Merge pull request #50 from ful1e5/main
Browse files Browse the repository at this point in the history
fix: Floating Windows background with `transparent` mode
  • Loading branch information
ful1e5 authored Jul 29, 2021
2 parents 0bf08e9 + 144013a commit 4f3b17b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Lualine `normal` section background color set blue color #43
- Kitty window border colors fix #47
- BufferLine slant style separator color fixed ( related to #16)
- Floating Windows background on `transparent` mode

## [v0.0.1] - 9 Jul 2021

Expand Down
1 change: 1 addition & 0 deletions lua/github-theme/colors.lua
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ function M.setup(config)
colors.bg_sidebar = config.darkSidebar and colors.bg2 or colors.bg
colors.bg_sidebar = config.transparent and colors.none or colors.bg_sidebar
colors.bg_float = config.darkFloat and colors.bg2 or colors.bg
colors.bg_float = config.transparent and colors.none or colors.bg_float

util.color_overrides(colors, config)

Expand Down

0 comments on commit 4f3b17b

Please sign in to comment.