created
last commit
_ repositories
created
last commit
created
last commit
created
last commit
created
last commit
created
last commit
created
last commit
created
last commit
created
last commit
created
last commit
created
last commit
1417 repositories
12
vim.o.background = ""vim.cmd.colorscheme ""NORMALinit.luaunixutf-80%0:2
123456789101112
" Returns true if the color hex value is lightfunction! IsHexColorLight(color) abortlet l:raw_color = trim(a:color, '#')let l:red = str2nr(substitute(l:raw_color, '.{0}(.{2})', '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)) / 1000return l:brightness > 155endfunctionNORMALcode.vimunixutf-850%6:12
311
11/week
A soothing dark color scheme for neovim and friends.
created about 2 years ago
last commit 17 days ago
12
vim.o.background = ""vim.cmd.colorscheme ""NORMALinit.luaunixutf-80%0:2
123456789101112
" Returns true if the color hex value is lightfunction! IsHexColorLight(color) abortlet l:raw_color = trim(a:color, '#')let l:red = str2nr(substitute(l:raw_color, '.{0}(.{2})', '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)) / 1000return l:brightness > 155endfunctionNORMALcode.vimunixutf-850%6:12
260
4/week
A Lua port of the Everforest colour scheme
created about 2 years ago
last commit 27 days ago
12
vim.o.background = ""vim.cmd.colorscheme ""NORMALinit.luaunixutf-80%0:2
123456789101112
" Returns true if the color hex value is lightfunction! IsHexColorLight(color) abortlet l:raw_color = trim(a:color, '#')let l:red = str2nr(substitute(l:raw_color, '.{0}(.{2})', '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)) / 1000return l:brightness > 155endfunctionNORMALcode.vimunixutf-850%6:12
26
Collection of duotone colorschemes for Neovim written in lua.
created about 2 years ago
last commit almost 2 years ago
12
vim.o.background = ""vim.cmd.colorscheme ""NORMALinit.luaunixutf-80%0:2
123456789101112
" Returns true if the color hex value is lightfunction! IsHexColorLight(color) abortlet l:raw_color = trim(a:color, '#')let l:red = str2nr(substitute(l:raw_color, '.{0}(.{2})', '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)) / 1000return l:brightness > 155endfunctionNORMALcode.vimunixutf-850%6:12
22
Neovim Lua plugin for Base16 colorscheme creation. Part of 'mini.nvim' library.
created about 2 years ago
last commit 7 days ago
12
vim.o.background = ""vim.cmd.colorscheme ""NORMALinit.luaunixutf-80%0:2
123456789101112
" Returns true if the color hex value is lightfunction! IsHexColorLight(color) abortlet l:raw_color = trim(a:color, '#')let l:red = str2nr(substitute(l:raw_color, '.{0}(.{2})', '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)) / 1000return l:brightness > 155endfunctionNORMALcode.vimunixutf-850%6:12
5
High contrast Neovim colorscheme (with Treesitter support) to blind your enemies. Inspired by cereal.
created almost 2 years ago
last commit 4 months ago
12
vim.o.background = ""vim.cmd.colorscheme ""NORMALinit.luaunixutf-80%0:2
123456789101112
" Returns true if the color hex value is lightfunction! IsHexColorLight(color) abortlet l:raw_color = trim(a:color, '#')let l:red = str2nr(substitute(l:raw_color, '.{0}(.{2})', '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)) / 1000return l:brightness > 155endfunctionNORMALcode.vimunixutf-850%6:12
1
Neovim theme inspired by Andromedia, for VScode
created almost 2 years ago
last commit 9 months ago
12
set background=colorschemeNORMAL.vimrcunixutf-80%0:2
123456789101112
" Returns true if the color hex value is lightfunction! IsHexColorLight(color) abortlet l:raw_color = trim(a:color, '#')let l:red = str2nr(substitute(l:raw_color, '.{0}(.{2})', '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)) / 1000return l:brightness > 155endfunctionNORMALcode.vimunixutf-850%6:12
0
-1/week
Github color theme for vim
created almost 2 years ago
last commit almost 2 years ago
12
vim.o.background = ""vim.cmd.colorscheme ""NORMALinit.luaunixutf-80%0:2
123456789101112
" Returns true if the color hex value is lightfunction! IsHexColorLight(color) abortlet l:raw_color = trim(a:color, '#')let l:red = str2nr(substitute(l:raw_color, '.{0}(.{2})', '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)) / 1000return l:brightness > 155endfunctionNORMALcode.vimunixutf-850%6:12
448
7/week
Monokai Pro theme for Neovim written in Lua, with multiple filters: Pro, Classic, Machine, Octagon, Ristretto, Spectrum
created almost 2 years ago
last commit about 1 month ago
12
set background=colorschemeNORMAL.vimrcunixutf-80%0:2
123456789101112
" Returns true if the color hex value is lightfunction! IsHexColorLight(color) abortlet l:raw_color = trim(a:color, '#')let l:red = str2nr(substitute(l:raw_color, '.{0}(.{2})', '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)) / 1000return l:brightness > 155endfunctionNORMALcode.vimunixutf-850%6:12
21
Bauhaus monochrome Vim colorscheme. https://www.miessociety.org/mies-works
created almost 2 years ago
last commit almost 2 years ago
12
vim.o.background = ""vim.cmd.colorscheme ""NORMALinit.luaunixutf-80%0:2
123456789101112
" Returns true if the color hex value is lightfunction! IsHexColorLight(color) abortlet l:raw_color = trim(a:color, '#')let l:red = str2nr(substitute(l:raw_color, '.{0}(.{2})', '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)) / 1000return l:brightness > 155endfunctionNORMALcode.vimunixutf-850%6:12
190
An arctic, north-bluish clean and elegant Neovim theme.
created almost 2 years ago
last commit 27 days ago