Skip to content

Commit

Permalink
feat(colorschemes)!: adding mellow, juliana, neosolarized and removin…
Browse files Browse the repository at this point in the history
…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
luxus authored May 28, 2023
1 parent a717c95 commit fbb2327
Show file tree
Hide file tree
Showing 7 changed files with 63 additions and 1 deletion.
5 changes: 5 additions & 0 deletions lua/astrocommunity/colorscheme/mellow-nvim/README.md
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.
1 change: 1 addition & 0 deletions lua/astrocommunity/colorscheme/mellow-nvim/mellow-nvim.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
return { "kvrohit/mellow.nvim" }
3 changes: 3 additions & 0 deletions lua/astrocommunity/colorscheme/neosolarized-nvim/README.md
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)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
return { { "svrana/neosolarized.nvim", opts = { comment_italics = true, background_set = false } } }
52 changes: 52 additions & 0 deletions lua/astrocommunity/colorscheme/nvim-juliana/README.md
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')
},
}
```
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
return { "kaiuri/nvim-juliana" }
1 change: 0 additions & 1 deletion lua/astrocommunity/colorscheme/onigiri/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ print(require 'onigiri'.presets)
--- > kaolin
--- > solarized
--- > moonlight
vim.g.onigiri = {
theme = require 'onigiri'.presets.mariana
}
Expand Down

0 comments on commit fbb2327

Please sign in to comment.