Skip to content

A tailwind CSS inspired color scheme for Neovim/Vim, designed to provide a visually appealing and consistent coding experience.

License

Notifications You must be signed in to change notification settings

NisonChrist/tailwind-theme.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tailwind theme for Neovim/Vim

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.

Preview

Preview

Installation

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,
}
use {
  'nisonchrist/tailwind-theme.nvim',
  config = function()
    vim.cmd.colorscheme('tailwind-theme')
  end
}

Using Vim-Plug

Plug 'nisonchrist/tailwind-theme.nvim'

Then in your init.vim or init.lua:

colorscheme tailwind-theme

Advanced Configuration

-- 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,
})

Acknowledgments

  • 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

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

A tailwind CSS inspired color scheme for Neovim/Vim, designed to provide a visually appealing and consistent coding experience.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published