Skip to content

Commit

Permalink
feat: lazy, packer hl groups
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Miliano committed Feb 20, 2023
1 parent f4df726 commit 5f155d9
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ The Solarized colorscheme supports the following plugins:
- [twilight](https://github.com/folke/twilight.nvim)
- [navic](https://github.com/SmiteshP/nvim-navic)
- [nvim-notify](https://github.com/rcarriga/nvim-notify)
- [packer.nvim](https://github.com/wbthomason/packer.nvim)

## 🤝 Contribute

Expand Down
34 changes: 34 additions & 0 deletions lua/solarized/themes/neovim_theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,40 @@ local function neovim_theme(solarized, chromatic)
NotifyINFOBody = { fg = colors.fg, bg = colors.bg },
NotifyDEBUGBody = { fg = colors.fg, bg = colors.bg },
NotifyTRACEBody = { fg = colors.fg, bg = colors.bg },

-- Packer
packerString = { fg = colors.cyan },
packerHash = { fg = colors.orange },
packerOutput = { fg = colors.violet },
packerRelDate = { fg = colors.fg },
packerSuccess = { fg = colors.green },
packerStatusSuccess = { fg = colors.blue },

-- Lazy
LazyButton = { fg = darken(colors.orange, 80), bg = colors.orange },
LazyButtonActive = { fg = darken(colors.orange, 80), bg = darken(colors.orange, 20) },
LazyDir = { link = 'Directory' },
-- LazyH1 = { fg = '#b58900', bg = '#073642' },
-- LazyH2 = { fg = '#cb4b16', bg = '#073642' },
-- LazyNoCond = { fg = '#b58900' },
-- LazyNormal = { fg = '#839496', bg = 'NONE' },
-- LazyProgressDone = { fg = '#859900', bg = '#073642' },
-- LazyProgressTodo = { fg = '#839496', bg = '#073642' },
-- LazyProp = { fg = '#268bd2' },
-- LazyReasonCmd = { fg = '#cb4b16' },
-- LazyReasonEvent = { fg = '#b58900' },
-- LazyReasonFt = { fg = '#6c71c4' },
-- LazyReasonImport = { fg = '#268bd2' },
-- LazyReasonKeys = { fg = '#268bd2' },
-- LazyReasonPlugin = { fg = '#268bd2' },
-- LazyReasonRuntime = { fg = '#268bd2' },
-- LazyReasonSource = { fg = '#6c71c4' },
-- LazyReasonStart = { fg = '#2aa198' },
-- LazySpecial = { fg = '#cb4b16' },
-- LazyTaskError = { fg = '#dc322f', bg = '#073642' },
-- LazyTaskOutput = { fg = '#859900', bg = '#073642' },
-- LazyUrl = { fg = '#2aa198' },
-- LazyValue = { fg = '#2aa198' },
}
end

Expand Down
8 changes: 8 additions & 0 deletions lua/solarized/themes/vim_theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,14 @@ local function vim_theme(solar)
NotifyINFOBody = { fg = colors.fg, bg = colors.bg },
NotifyDEBUGBody = { fg = colors.fg, bg = colors.bg },
NotifyTRACEBody = { fg = colors.fg, bg = colors.bg },

-- Packer
packerString = { fg = colors.cyan },
packerHash = { fg = colors.orange },
packerOutput = { fg = colors.violet },
packerRelDate = { fg = colors.fg },
packerSuccess = { fg = colors.green },
packerStatusSuccess = { fg = colors.blue },
}
end

Expand Down
8 changes: 8 additions & 0 deletions lua/solarized/themes/vscode_theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,14 @@ local function vscode_theme(solarized, chromatic)
NotifyINFOBody = { fg = colors.fg, bg = colors.bg },
NotifyDEBUGBody = { fg = colors.fg, bg = colors.bg },
NotifyTRACEBody = { fg = colors.fg, bg = colors.bg },

-- Packer
packerString = { fg = colors.cyan },
packerHash = { fg = colors.orange },
packerOutput = { fg = colors.violet },
packerRelDate = { fg = colors.fg },
packerSuccess = { fg = colors.green },
packerStatusSuccess = { fg = colors.blue },
}
end

Expand Down

0 comments on commit 5f155d9

Please sign in to comment.