Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
Merge pull request #39 from ful1e5/dev
Browse files Browse the repository at this point in the history
fix: inactive statusline background color
  • Loading branch information
ful1e5 authored Sep 19, 2021
2 parents 86ca9be + c52594b commit 093095b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Parse lua table inside `colors` config **[fix #6]**
- Better Telescope highlighting
- Removed `_` from extra themes name
- inactive statusline background color

## [v0.0.1] - 14 June 2021

Expand Down
4 changes: 2 additions & 2 deletions lua/onedark/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ function M.setup(config)
SpellCap = {sp = c.warning, style = "undercurl"}, -- Word that should start with a capital. |spell| Combined with the highlighting used otherwise.
SpellLocal = {sp = c.info, style = "undercurl"}, -- Word that is recognized by the spellchecker as one that is used in another region. |spell| Combined with the highlighting used otherwise.
SpellRare = {sp = c.hint, style = "undercurl"}, -- Word that is recognized by the spellchecker as one that is hardly ever used. |spell| Combined with the highlighting used otherwise.
StatusLine = {fg = c.fg_sidebar, bg = c.bg_statusline}, -- status line of current window
StatusLineNC = {fg = c.fg_gutter, bg = c.bg_statusline}, -- status lines of not-current windows Note: if this is equal to "StatusLine" Vim will use "^^^" in the status line of the current window.
StatusLine = {fg = c.syntax.comment, bg = c.bg_statusline}, -- status line of current window
StatusLineNC = {fg = c.fg_gutter, bg = c.bg}, -- status lines of not-current windows Note: if this is equal to "StatusLine" Vim will use "^^^" in the status line of the current window.
TabLine = {bg = c.bg_statusline, fg = c.fg_gutter}, -- tab pages line, not active tab page label
TabLineFill = {bg = c.black}, -- tab pages line, where there are no labels
TabLineSel = {fg = c.black, bg = c.blue}, -- tab pages line, active tab page label
Expand Down

0 comments on commit 093095b

Please sign in to comment.