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.
{
"zootedb0t/citruszest.nvim",
lazy = false,
priority = 1000,
},
use { "zootedb0t/citruszest.nvim" }
Plug 'zootedb0t/citruszest.nvim'
Enable colorscheme
after installation.
In init.lua
vim.cmd("colorscheme citruszest")
In init.vim
colorscheme citruszest
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',
}
}
kitty.conf
.Xresources
is available here.Color | Value | Background |
---|---|---|
Background | #121212 |
|
Foreground | #BFBFBF |
|
Visual | #404040 |
|
Cursor | #666666 |
|
Red | #FF5454 |
|
Green | #00CC7A |
|
Yellow | #FFD400 |
|
Orange | #FF8C00 |
|
Blue | #00BFFF |
|
Cyan | #48D1CC |
|
White | #BFBFBF |
|
Black(Bright) | #808080 |
|
Red(Bright) | #FF1A75 |
|
Green(Bright) | #1AFFA3 |
|
Yellow(Bright) | #FFFF00 |
|
Orange(Bright) | #FF9633 |
|
Blue(Bright) | #33CFFF |
|
Cyan(Bright) | #00FFF2 |
|
White(Bright) | #F9F9F9 |