It's a colorscheme. π€
- dark/light theme βοΈ
- contrast ratio of at least 4.5:1 βοΈ
- CIELAB grading βοΈ
- distinguishable colors βοΈ
Tell me what you think about the π light mode. It pops, right? π
SHOW π‘ BLOAT (unnecessary guide) π€£π€£π€£
Simply copy the 0815.vim file to.vim/colors/
or
.config/nvim/colors/
or
use your preferred plugin manager.
For Vim add the following line to your .vimrc.
colorscheme 0815For Neovim add following line to your init.lua.
vim.cmd.colorscheme("0815")If you want to set a specific mode as default you can define it in your .vimrc, init.lua or whatever your config file name is. ππ
For vimscript set:
set background=lightFor lua set:
vim.opt.background="light"You can manually toggle between dark and light mode by executing the following commands in your running vim session.
:set background=dark:set background=lightFor the ultimate experience use the no bloat one-liner toggle switch keybind below. It sets up a dark/light toggle switch on F12.
vimscript:
nnoremap <F12> :let &background = (&background == "dark" ? "light" : "dark")<CR>lua:
vim.keymap.set("n", "<F12>", "<cmd>let &background = (&background == 'dark' ? 'light' : 'dark')<CR>")
