Skip to content

Commit

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

## 🤝 Contribute

Expand Down
2 changes: 0 additions & 2 deletions lua/solarized/themes/neovim_theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -571,8 +571,6 @@ local function neovim_theme(solarized, chromatic)
LazySpecial = { fg = colors.green },
LazyTaskError = { fg = colors.red },
LazyTaskOutput = { fg = colors.green },
LazyUrl = { fg = colors.cyan },
LazyValue = { fg = colors.cyan },
}
end

Expand Down
26 changes: 25 additions & 1 deletion lua/solarized/themes/vim_theme.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
local function vim_theme(solar)
local function vim_theme(solar, chromatic)
local colors = solar.colors
local darken = chromatic.darken

return {
-- Editor
Expand Down Expand Up @@ -412,6 +413,29 @@ local function vim_theme(solar)
packerRelDate = { fg = colors.fg },
packerSuccess = { fg = colors.green },
packerStatusSuccess = { fg = colors.blue },

-- Lazy
LazyButton = { fg = colors.green, bg = darken(colors.green, 50) },
LazyButtonActive = { fg = colors.green, bg = darken(colors.green, 70) },
LazyDir = { link = 'Directory' },
LazyH1 = { fg = colors.yellow },
LazyH2 = { fg = colors.orange },
LazyNoCond = { fg = colors.yellow },
LazyProgressDone = { fg = colors.green },
LazyProgressTodo = { fg = colors.content },
LazyProp = { fg = colors.blue },
LazyReasonCmd = { fg = colors.orange },
LazyReasonEvent = { fg = colors.yellow },
LazyReasonFt = { fg = colors.violet },
LazyReasonImport = { fg = colors.blue },
LazyReasonKeys = { fg = colors.blue },
LazyReasonPlugin = { fg = colors.blue },
LazyReasonRuntime = { fg = colors.blue },
LazyReasonSource = { fg = colors.violet },
LazyReasonStart = { fg = colors.cyan },
LazySpecial = { fg = colors.green },
LazyTaskError = { fg = colors.red },
LazyTaskOutput = { fg = colors.green },
}
end

Expand Down
23 changes: 23 additions & 0 deletions lua/solarized/themes/vscode_theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,29 @@ local function vscode_theme(solarized, chromatic)
packerRelDate = { fg = colors.fg },
packerSuccess = { fg = colors.green },
packerStatusSuccess = { fg = colors.blue },

-- Lazy
LazyButton = { fg = colors.green, bg = darken(colors.green, 50) },
LazyButtonActive = { fg = colors.green, bg = darken(colors.green, 70) },
LazyDir = { link = 'Directory' },
LazyH1 = { fg = colors.yellow },
LazyH2 = { fg = colors.orange },
LazyNoCond = { fg = colors.yellow },
LazyProgressDone = { fg = colors.green },
LazyProgressTodo = { fg = colors.content },
LazyProp = { fg = colors.blue },
LazyReasonCmd = { fg = colors.orange },
LazyReasonEvent = { fg = colors.yellow },
LazyReasonFt = { fg = colors.violet },
LazyReasonImport = { fg = colors.blue },
LazyReasonKeys = { fg = colors.blue },
LazyReasonPlugin = { fg = colors.blue },
LazyReasonRuntime = { fg = colors.blue },
LazyReasonSource = { fg = colors.violet },
LazyReasonStart = { fg = colors.cyan },
LazySpecial = { fg = colors.green },
LazyTaskError = { fg = colors.red },
LazyTaskOutput = { fg = colors.green },
}
end

Expand Down

0 comments on commit 4443451

Please sign in to comment.