Skip to content

FinestBanana/0815.vim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

3 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

0815

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? πŸ‘“


πŸ“Έ SCREENSHOTS 0815
SHOW 🐑 BLOAT (unnecessary guide) 🀣🀣🀣

πŸ“¦ Installation

Simply copy the 0815.vim file to
.vim/colors/
or
.config/nvim/colors/
or
use your preferred plugin manager.

πŸ’» Usage

For Vim add the following line to your .vimrc.
colorscheme 0815

For Neovim add following line to your init.lua.
vim.cmd.colorscheme("0815")

πŸŒ“ Switch Modes

⬇️ Set default

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=light

For lua set:

vim.opt.background="light"

πŸ” Manually switch during session

You can manually toggle between dark and light mode by executing the following commands in your running vim session.
:set background=dark
:set background=light

πŸ’£ Ultimate Toggle Switch

For 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>")

About

πŸ€– It's a colorscheme.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors