Skip to content

A vibrant and refreshing neovim colorscheme inspired by citrus fruits.

License

Notifications You must be signed in to change notification settings

benjaminjellis/citrusdream.nvim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

citrusdream.nvim

LICENSE Lua

color_palette

citrsudream.nvim is a fork of citruszest.nvim.

🔥 Showcase

TODO

🔧 Installation

Important

Requirement

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

lazy.nvim

{
  "benjaminjellis/citrusdream.nvim",
  lazy = false,
  priority = 1000,
},

packer.nvim

use { "benjaminjellis/citrusdream.nvim", }

vim-plug

Plug 'benjaminjellis/citrusdream.nvim'

❓ Usage

Enable colorscheme after installation.

In init.lua

vim.cmd("colorscheme citrsudream")

In init.vim

colorscheme citrsudream

🔨 Configration

To find highlight group of word under cursor. Use Inspect command.

    -- For using default config leave this empty.
    require("citrsudream").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}
        },
    })

citrusdream supports lualine.nvim.

local lualine = require 'lualine'

lualine.setup {
  options = {
    theme = 'citrusdream',
  }
}

📌 Supported Plugins

🎆 Integration

🎨 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

🙏 Acknowledgments

Made in Neovim with 💕 For Neovim

About

A vibrant and refreshing neovim colorscheme inspired by citrus fruits.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 99.3%
  • Shell 0.7%