vimcolorschemes

filter by:

1359 color schemes

Go to page: mini.base16, by echasnovski
minicyanlua
12
vim.cmd [[ set background= ]]vim.cmd [[ colorscheme ]]
NORMALinit.luaunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
echasnovski
16

mini.base16

1/week
Neovim Lua plugin for Base16 colorscheme creation. Part of 'mini.nvim' library.
Go to page: kurayami.nvim, by kevinm6
knvimlua
12
vim.cmd [[ set background=dark ]]vim.cmd [[ colorscheme knvim ]]
NORMALinit.luaunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
kevinm6
4

kurayami.nvim

1/week
Dark only theme for Neovim with treesitter support
Go to page: no-clown-fiesta.nvim, by no-clown-fiesta
no-clown-fiestalua
12
vim.cmd [[ set background=dark ]]vim.cmd [[ colorscheme no-clown-fiesta ]]
NORMALinit.luaunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
no-clown-fiesta
15

no-clown-fiesta.nvim

1/week
A dark Neovim theme written in lua trying to avoid looking like a clown fiesta
Go to page: nvim-nyctophilia, by javiorfo
nebulalua
12
vim.cmd [[ set background=dark ]]vim.cmd [[ colorscheme ]]
NORMALinit.luaunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
javiorfo
17

nvim-nyctophilia

1/week
A set of Neovim colorschemes for nightlovers
Go to page: sweetie.nvim, by NTBBloodbath
sweetielua
12
vim.cmd [[ set background= ]]vim.cmd [[ colorscheme sweetie ]]
NORMALinit.luaunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
NTBBloodbath
77

sweetie.nvim

1/week
A clean, delightful and highly customizable Neovim colorscheme written in Lua
Go to page: night-owl.nvim, by oxfist
night-owllua
12
vim.cmd [[ set background=dark ]]vim.cmd [[ colorscheme night-owl ]]
NORMALinit.luaunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
oxfist
171

night-owl.nvim

1/week
🦉 🌌 Night Owl colorscheme implementation for Neovim with support for Treesitter and semantic tokens
Go to page: darcula-dark.nvim, by xiantang
darcula-darklua
12
vim.cmd [[ set background=dark ]]vim.cmd [[ colorscheme darcula-dark ]]
NORMALinit.luaunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
xiantang
36

darcula-dark.nvim

1/week
Jetbrains Darcula Dark for Neovim.
Go to page: brown.vim, by bhrown
brownvim
12
set background=darkcolorscheme brown
NORMAL.vimrcunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
bhrown
9

brown.vim

1/week
Brown and gold colorscheme for Vim
Go to page: twilight-moon, by comfysage
twilight-moonlua
12
vim.cmd [[ set background=dark ]]vim.cmd [[ colorscheme twilight-moon ]]
NORMALinit.luaunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
comfysage
5

twilight-moon

1/week
🌲 a cozy neovim colorscheme for nightly programmers.
Go to page: pastelnight.nvim, by pauchiner
pastelnightlua
12
vim.cmd [[ set background=dark ]]vim.cmd [[ colorscheme pastelnight ]]
NORMALinit.luaunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
pauchiner
31

pastelnight.nvim

1/week
Neovim theme inspired in Palenight, support a lot of plugins out-of-the-box. Includes themes for iTerm2, Alacritty, Kitty, Fish and others.
Go to page: vim-helix, by foxoman
helixvim
12
set background=darkcolorscheme
NORMAL.vimrcunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
foxoman
4

vim-helix

1/week
Helix theme for Vim/Nvim - include helix boo_berry theme
Go to page: lucario, by raphamorim
lucariovim
12
set background=darkcolorscheme lucario
NORMAL.vimrcunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
raphamorim
788

lucario

The best flat theme for Vim, Atom, Sublime Text, Jetbrains Editors, Terminal.app, iTerm, Xcode, Windows Terminal and XTerm
Go to page: yowish.vim, by KabbAmine
yowishvim
12
set background=darkcolorscheme yowish
NORMAL.vimrcunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
KabbAmine
145

yowish.vim

A dark & yellowish vim colorscheme
Go to page: hydrangea-vim, by yuttie
hydrangeavim
12
set background=darkcolorscheme hydrangea
NORMAL.vimrcunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
yuttie
140

hydrangea-vim

Hydrangea theme for Vim.
Go to page: rigel, by Rigellute
rigelvim
12
set background=darkcolorscheme rigel
NORMAL.vimrcunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
Rigellute
508

rigel

🌌 Colorscheme for vim, terminal, vscode and slack - based on the star Rigel ✨.
Go to page: vim-snazzy, by connorholyday
snazzyvim
12
set background=darkcolorscheme snazzy
NORMAL.vimrcunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
connorholyday
337

vim-snazzy

Elegant vim theme with bright colors.
Go to page: onedark.vim, by joshdick
onedarkvim
12
set background=darkcolorscheme onedark
NORMAL.vimrcunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
joshdick
3846

onedark.vim

A dark Vim/Neovim color scheme inspired by Atom's One Dark syntax theme.
Go to page: nofrils, by robertmeta
nofrils-darkvim
12
set background=darkcolorscheme
NORMAL.vimrcunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
robertmeta
321

nofrils

An extremely minimalist colorscheme, even opting out of the second L in frills
Go to page: purify, by kyoz
purifyvim
12
set background=darkcolorscheme purify
NORMAL.vimrcunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
kyoz
338

purify

🌈 Clean & vibrant color schemes for Vim, Terminals...
Go to page: space-vim-dark, by liuchengxu
space-vim-darkvim
12
set background=darkcolorscheme space-vim-dark
NORMAL.vimrcunixutf-8☰ 0% 0:2
123456789101112
" Returns true if the color hex value is light
function! IsHexColorLight(color) abort
let l:raw_color = trim(a:color, '#')

let l:red = str2nr(substitute(l:raw_color, '(.{2}).{4}', '1', 'g'), 16)
let l:green = str2nr(substitute(l:raw_color, '.{2}(.{2}).{2}', '1', 'g'), 16)
let l:blue = str2nr(substitute(l:raw_color, '.{4}(.{2})', '1', 'g'), 16)

let l:brightness = ((l:red * 299) + (l:green * 587) + (l:blue * 114)) / 1000

return l:brightness > 155
endfunction
NORMALcode.vimunixutf-8☰50%6:12
liuchengxu
576

space-vim-dark

💜 A dark colorscheme for space-vim, see space-vim-theme for light background support!