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.
[!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'
Enable colorscheme
after installation.
In init.lua
vim.cmd("colorscheme citruszest")
In init.vim
colorscheme citruszest
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',
}
}
kitty.conf
.Xresources
is available here.~/.local/share/konsole/
and then select the theme on Konsole's profile settings[neo]muttrc
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 |