Skip to content

Commit

Permalink
feat: lualine theme dracula-soft
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmx03 committed Feb 26, 2024
1 parent 6f943bd commit ad744ad
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,17 @@ return {
vim.cmd.colorscheme 'dracula'
vim.cmd.colorscheme 'dracula-soft'
end
},
{
'nvim-lualine/lualine.nvim',
opts = {
options = {
theme = vim.g.colors_name,
refresh = {
statusline = 1000,
},
},
},
}
}
```
Expand Down
37 changes: 37 additions & 0 deletions lua/lualine/themes/dracula-soft.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
-- Copyright (c) 2020-2021 shadmansaleh
-- MIT license, see LICENSE for more details.
-- Credit itchyny, jackno (lightline)
local colors = require 'dracula.palette.dracula-soft'

return {
normal = {
a = { bg = colors.purple, fg = colors.base03, gui = 'bold' },
b = { bg = colors.base01, fg = colors.base0 },
c = { bg = colors.base02, fg = colors.base0 },
},
insert = {
a = { bg = colors.green, fg = colors.base03, gui = 'bold' },
b = { bg = colors.base01, fg = colors.base0 },
c = { bg = colors.base02, fg = colors.base0 },
},
visual = {
a = { bg = colors.yellow, fg = colors.base03, gui = 'bold' },
b = { bg = colors.base01, fg = colors.base0 },
c = { bg = colors.base02, fg = colors.base0 },
},
replace = {
a = { bg = colors.red, fg = colors.base03, gui = 'bold' },
b = { bg = colors.base01, fg = colors.base0 },
c = { bg = colors.base02, fg = colors.base0 },
},
command = {
a = { bg = colors.orange, fg = colors.base03, gui = 'bold' },
b = { bg = colors.base01, fg = colors.base0 },
c = { bg = colors.base02, fg = colors.base0 },
},
inactive = {
a = { bg = colors.base02, fg = colors.base0, gui = 'bold' },
b = { bg = colors.base01, fg = colors.base0 },
c = { bg = colors.base02, fg = colors.base0 },
},
}

0 comments on commit ad744ad

Please sign in to comment.