README.md

May 9, 2025 ยท View on GitHub

citruszest.nvim

LICENSE Lua Luacheck

color_palette

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

Screenshot_2023-12-15-15-40-28

Screenshot_2023-11-08-09-14-48_1920x1080

Screenshot_2023-11-08-09-11-41_1920x1080

:wrench: Installation

Important

Requirement

  • Treesitter > v0.9.2 (Recommended)
  • Neovim >= v0.9.1

lazy.nvim

{
  "zootedb0t/citruszest.nvim",
  lazy = false,
  priority = 1000,
},

packer.nvim

use { "zootedb0t/citruszest.nvim" }

vim-plug

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

:fireworks: Integration

:art: Colors

ColorValueBackground
Background#121212background
Foreground#BFBFBFforeground
Visual#404040cursor
Cursor#383838cursor
Black#232323black
Red#FF5454red
Green#00CC7Agreen
Yellow#FFD700yellow
Orange#FF7431orange
Blue#00BFFFblue
Cyan#00FFFFcyan
White#BFBFBFwhite
Black(Bright)#767C77bright_black
Red(Bright)#FF1A75bright_red
Green(Bright)#1AFFA3bright_green
Yellow(Bright)#FFFF00bright_yellow
Orange(Bright)#FFAA54bright_orange
Blue(Bright)#28C9FFbright_blue
Cyan(Bright)#33FFFFbright_cyan
White(Bright)#F9F9F9bright_white

:pray: Acknowledgments

Made in Neovim with ๐Ÿ’• For Neovim