zootedb0t/citruszest.nvim

github github
plugincolorschemetreesitter-colorschemes
stars 28
issues 1
subscribers 1
forks 1
CREATED

2023-06-27

UPDATED

10 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-07-02-03-23-01_1920x1080

Screenshot_2023-07-17-08-48-14_1920x1080

Screenshot_2023-07-02-03-21-52_1920x1080

:wrench: Installation

Requirement

  • Treesitter (Recommended)
  • Neovim >= 0.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 know 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
            italic = true,
            bold = 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 #666666 cursor
Red #FF5454 red
Green #00CC7A green
Yellow #FFD400 Yellow
Orange #FF8C00 Orange
Blue #00BFFF purple
Cyan #48D1CC Cyan
White #BFBFBF white
Black(Bright) #808080 bright_black
Red(Bright) #FF1A75 bright_red
Green(Bright) #1AFFA3 bright_green
Yellow(Bright) #FFFF00 bright_yellow
Orange(Bright) #FF9633 bright_orange
Blue(Bright) #33CFFF bright_purple
Cyan(Bright) #00FFF2 bright_cyan
White(Bright) #F9F9F9 bright_cyan

:pray: Acknowledgments