-
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(colorschemes)!: adding mellow, juliana, neosolarized and removin…
…g onigiri (#238) * fix(neovide): noice and mini.animate is not compatible with neovide * add(colorschemes): adding mellow, juliana, neosolarized and removing onigiri
- Loading branch information
Showing
7 changed files
with
63 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# mellow.nvim | ||
|
||
**Repository:** https://github.com/kvrohit/mellow.nvim | ||
|
||
A soothing dark color scheme for neovim. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
return { "kvrohit/mellow.nvim" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# neosolarized.nvim | ||
|
||
**Repository:** [svrana/neosolarized.nvim](https://github.com/svrana/neosolarized.nvim) |
1 change: 1 addition & 0 deletions
1
lua/astrocommunity/colorscheme/neosolarized-nvim/neosolarized-nvim.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
return { { "svrana/neosolarized.nvim", opts = { comment_italics = true, background_set = false } } } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# nvim-juliana | ||
|
||
**Repository:** https://github.com/kaiuri/nvim-juliana | ||
|
||
Port of Sublime's Mariana Theme for Neovim for short attention span devs with Tree-sitter support. | ||
|
||
You can also set it to use other palettes like, for [example](https://github.com/kaiuri/nvim-juliana#gruvbox): | ||
|
||
```lua | ||
---@generic K: "light" | "dark" | ||
---@param mode K | ||
local gruvbox = function(mode) | ||
---@param tbl table<`K`, string> | ||
---@return string | ||
local function pick(tbl) | ||
return tbl[mode] | ||
end | ||
return { | ||
bg1 = pick { light = '#fff7d5', dark = '#32302e' }, | ||
bg2 = pick { light = '#fff5cb', dark = '#282828' }, | ||
bg3 = pick { light = '#fff2bc', dark = '#242424' }, | ||
blue1 = pick { light = '#076578', dark = '#83a598' }, | ||
blue2 = pick { light = '#074f78', dark = '#458588' }, | ||
cyan1 = pick { light = '#689d69', dark = '#8ec07c' }, | ||
cyan2 = pick { light = '#23693e', dark = '#689d6a' }, | ||
diff_add = pick { light = '#c7d4c4', dark = '#343427' }, | ||
diff_change = pick { light = '#eadba9', dark = '#3e3428' }, | ||
diff_remove = pick { light = '#eac4a9', dark = '#3c2828' }, | ||
diff_text = pick { light = '#ffe789', dark = '#32302e' }, | ||
fg1 = pick { light = '#282828', dark = '#fff5cb' }, | ||
fg2 = pick { light = '#353535', dark = '#ebdbb2' }, | ||
fg3 = pick { light = '#797467', dark = '#928374' }, | ||
fg4 = pick { light = '#938e80', dark = '#665c54' }, | ||
green = pick { light = '#228b22', dark = '#a8a920' }, | ||
magenta = pick { light = '#8f3f71', dark = '#c2748f' }, | ||
orange = pick { light = '#f71d05', dark = '#fb4834' }, | ||
red1 = pick { light = '#cc241d', dark = '#d44333' }, | ||
red2 = pick { light = '#9d0006', dark = '#cc231d' }, | ||
selection_bg = pick { light = '#ffeda3', dark = '#423d39' }, | ||
text_fg = pick { light = '#282828', dark = '#eadbb5' }, | ||
yellow1 = pick { light = '#cba200', dark = '#fabd2f' }, | ||
yellow2 = pick { light = '#ab7b1a', dark = '#e8ab28' }, | ||
yellow3 = pick { light = '#996814', dark = '#d79a21' }, | ||
} | ||
end | ||
{ | ||
'kaiuri/nvim-juliana', | ||
opts = { | ||
colors = gruvbox('dark') | ||
}, | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
return { "kaiuri/nvim-juliana" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters