A tailwind CSS inspired color scheme for Neovim/Vim, designed to provide a visually appealing and consistent coding experience.
Caution
This theme is currently in active development. Expect frequent updates and changes.
Using lazy.nvim
{
'nisonchrist/tailwind-theme.nvim',
lazy = false,
priority = 1000,
config = function()
-- Optional: configure before loading
-- require('tailwind-theme').setup({ transparent = true })
vim.cmd.colorscheme('tailwind-theme')
end,
}Using packer.nvim
use {
'nisonchrist/tailwind-theme.nvim',
config = function()
vim.cmd.colorscheme('tailwind-theme')
end
}Plug 'nisonchrist/tailwind-theme.nvim'Then in your init.vim or init.lua:
colorscheme tailwind-theme-- Load with options
require('tailwind-theme').setup({
-- Enable transparent background
transparent = true,
-- Disable plugin highlights for faster load times
disable_plugin_highlights = false,
-- Load only specific plugin highlights (improves performance)
plugins = { 'lazy', 'mason', 'telescope' },
-- Force reload (clears cache)
force = false,
})- This theme is highly inspired by the Tailwind CSS color palette
- The code structure is inspired by another Neovim/Vim theme mapledark.nvim by abhilash26
- Built for the Neovim community
This project is licensed under the MIT License - see the LICENSE file for details.
