zenbones-theme / zenbones.nvim

🪨 A collection of contrast-based Vim/Neovim colorschemes
MIT License
689 stars 48 forks source link

Experimental neovim website theme #3

Closed mcchrish closed 2 years ago

mcchrish commented 3 years ago
Screen Shot 2021-08-26 at 5 30 44 PM Screen Shot 2021-08-26 at 6 13 02 PM

Works by just changing:

https://github.com/mcchrish/zenbones.nvim/blob/666881476681953604851f01d773316191f91e5a/lua/zenbones/colors.lua#L5-L6

To:

    sand = hsluv("#e7eee8"),
    stone = hsluv("#202e18"),
mcchrish commented 3 years ago

This won't be implemented to the theme but it's nice to see that the theme can easily be tweaked and get a decent result. Might also consider shipping different variations in the future.

connorlay commented 3 years ago

This is really cool! I've been looking for a mostly-monochrome NeoVim color scheme. Do you happen to have an example of configuring this via Lush?

mcchrish commented 2 years ago

@connorlay sorry of the late response. I'm just finishing the zenflesh version.

Check this out.

Light:

Screen Shot 2021-09-17 at 8 06 28 PM

Dark:

Screen Shot 2021-09-17 at 8 06 40 PM

I just copied the fg and bg colors of the neovim site:

Screen Shot 2021-09-17 at 8 07 15 PM

Here's the branch if you want to check out further. https://github.com/mcchrish/zenbones.nvim/tree/neovim-io. (It's basically just this commit https://github.com/mcchrish/zenbones.nvim/commit/6d8c5f8df267d62807511fe6e38d36199d8081fb)

Honestly, I'm thinking of opening up an API where users can tweak the palette to their likings.

connorlay commented 2 years ago

Honestly, I'm thinking of opening up an API where users can tweak the palette to their likings.

That's a great idea! I played around with Lush a bit but I'm not sure if you can change the initial color definitions via extensions or not. Those screenshots look great by the way 💯

mcchrish commented 2 years ago

Neovim colors is officially in this repo. https://github.com/mcchrish/zenbones.nvim/blob/main/colors/neovim.lua

It is set as an example of how to extend zenbones colors and make a personal theme out of it.