diff options
author | Squibid <me@zacharyscheiman.com> | 2023-11-24 21:38:31 -0500 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-11-24 21:38:31 -0500 |
commit | f35b13d669867209427449840ff0930a732591dc (patch) | |
tree | 3acb658ec5d01f456c49a097d56f736cbfbbfc7d /colors | |
parent | ebf9d2d1c4682068f5116f7efc1568ce5adf4f1b (diff) | |
download | nvim-f35b13d669867209427449840ff0930a732591dc.tar.gz nvim-f35b13d669867209427449840ff0930a732591dc.tar.bz2 nvim-f35b13d669867209427449840ff0930a732591dc.zip |
more stuff too lazy to seperate
Diffstat (limited to '')
-rw-r--r-- | colors/mellow.ext.lua (renamed from colors/mellow+.lua) | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/colors/mellow+.lua b/colors/mellow.ext.lua index e089bfc..a3080a3 100644 --- a/colors/mellow+.lua +++ b/colors/mellow.ext.lua @@ -44,8 +44,7 @@ highlight('EndOfBuffer', { fg = vim.g.terminal_color_background }) -- plugin highlights ---------------------------------------------------------- -- telescope -highlight('TelescopeMatching', { bg = c.gray01 }) -highlight('TelescopeNormal', { bg = c.bg_dark }) +highlight('TelescopeMatching', { bg = c.gray01, fg = c.blue }) highlight('TelescopePreviewBorder', { bg = c.bg_dark }) highlight('TelescopePreviewNormal', { bg = c.bg_dark }) @@ -61,7 +60,7 @@ highlight('TelescopeResultsNormal', { bg = c.bg_dark }) highlight('TelescopeResultsTitle', { bg = c.bg_dark, fg = c.bg_dark }) highlight('TelescopeSelection', { bg = vim.g.terminal_color_background }) -highlight('TelescopeSelectionCaret', { bg = vim.g.terminal_color_background, fg = c.red}) +highlight('TelescopeSelectionCaret', { bg = vim.g.terminal_color_background, fg = c.cyan, bold = true }) -- alpha highlight('AlphaHeader', { fg = colors.blue }) @@ -71,3 +70,17 @@ highlight('AlphaFooter', { fg = colors.blue }) -- fidget highlight('FidgetTask', { fg = vim.g.terminal_color_foreground }) + +-- norg + headings +highlight({ "@neorg.headings.1.title", "@neorg.headings.1.icon" }, + { fg = colors.yellow, bg = '#2a211c' }) +highlight({ "@neorg.headings.2.title", "@neorg.headings.2.icon" }, + { fg = colors.blue, bg = '#201e25' }) +highlight({ "@neorg.headings.3.title", "@neorg.headings.3.icon" }, + { fg = colors.cyan, bg = '#2b1b20' }) +highlight({ "@neorg.headings.4.title", "@neorg.headings.4.icon" }, + { fg = colors.green, bg = '#1d201e' }) +highlight({ "@neorg.headings.5.title", "@neorg.headings.5.icon" }, + { fg = colors.magenta, bg = '#251a21' }) +highlight({ "@neorg.headings.6.title", "@neorg.headings.6.icon" }, + { fg = colors.white, bg = '#212126' }) |