A vibrant and refreshing neovim colorscheme inspired by citrus fruits.
citruszest.nvim

citruszest.nvim features a combination of bright and juicy colors reminiscent of various citrus fruits. The primary colors include vibrant oranges, zesty yellows, and refreshing greens. These colors are carefully selected to provide a visually stimulating and attention-grabbing experience while coding.
:fire: Showcase
:wrench: Installation
[!IMPORTANT]
### Requirement
- Treesitter > v0.9.2 (Recommended)
- Neovim >= v0.9.1
{
"zootedb0t/citruszest.nvim",
lazy = false,
priority = 1000,
},
use { "zootedb0t/citruszest.nvim" }
Plug 'zootedb0t/citruszest.nvim'
:question: Usage
Enable colorscheme after installation.
In init.lua
vim.cmd("colorscheme citruszest")
In init.vim
colorscheme citruszest
:hammer: Configration
To find highlight group of word under cursor. Use Inspect command.
-- For using default config leave this empty.
require("citruszest").setup({
option = {
transparent = false, -- Enable/Disable transparency
bold = false,
italic = true,
},
-- Override default highlight style in this table
-- E.g If you want to override Constant highlight style
style = {
-- This will change Constant foreground color and make it bold.
Constant = { fg = "#FFFFFF", bold = true}
},
})
citruszest supports lualine.nvim.
local lualine = require 'lualine'
lualine.setup { options = { theme = 'citruszest', } }
:pushpin: Supported Plugins
- nvim-cmp
- Telescope
- Nvimtree
- nvim-ts-rainbow2
- fidget.nvim
- gitsigns.nvim
- alpha.nvim
- whichkey.nvim
- flash.nvim
- lazy.nvim
- dashboard-nvim
:fireworks: Integration
- Kitty users copy this into their
kitty.conf. Xresourcesis available here.- Foot terminal users can use this.
- iterm2 user can use this.
- Alacritty user can use this.
- Konsole user put this into
~/.local/share/konsole/and then select the theme on Konsole's profile settings - Wezterm users can use this
- Mutt/Neomutt users can add this (or the 256 color version) to their
[neo]muttrc
:art: Colors
| Color | Value | Background | | -------------- | --------- | -------------------------------------------------------- | | Background | #121212 | | | Foreground |
#BFBFBF | | | Visual |
#404040 | | | Cursor |
#383838 | | | Black |
#232323 | | | Red |
#FF5454 | | | Green |
#00CC7A | | | Yellow |
#FFD700 | | | Orange |
#FF7431 | | | Blue |
#00BFFF | | | Cyan |
#00FFFF | | | White |
#BFBFBF | | | Black(Bright) |
#767C77 | | | Red(Bright) |
#FF1A75 | | | Green(Bright) |
#1AFFA3 | | | Yellow(Bright) |
#FFFF00 | | | Orange(Bright) |
#FFAA54 | | | Blue(Bright) |
#28C9FF | | | Cyan(Bright) |
#33FFFF | | | White(Bright) |
#F9F9F9 | |
:pray: Acknowledgments
- SpaceCamp - For inspiring me write my own colorscheme.
- FluoroMachine.nvim - For the beautiful colorscheme.
- catppuccin - For describing highlight groups.