zootedb0t/citruszest.nvim

github github
colorschemetreesitter-colorschemes
stars 117
issues 1
subscribers 1
forks 5
CREATED

2023-06-27

UPDATED

7 days ago


Luacheck

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

Color Value Background
Background #121212 background
Foreground #BFBFBF foreground
Visual #404040 cursor
Cursor #383838 cursor
Black #232323 black
Red #FF5454 red
Green #00CC7A green
Yellow #FFD700 yellow
Orange #FF7431 orange
Blue #00BFFF blue
Cyan #00FFFF cyan
White #BFBFBF white
Black(Bright) #767C77 bright_black
Red(Bright) #FF1A75 bright_red
Green(Bright) #1AFFA3 bright_green
Yellow(Bright) #FFFF00 bright_yellow
Orange(Bright) #FFAA54 bright_orange
Blue(Bright) #28C9FF bright_blue
Cyan(Bright) #33FFFF bright_cyan
White(Bright) #F9F9F9 bright_white

:pray: Acknowledgments