A Vim theme for night time. Loosely based on vim-monotonic and chrome's dark reader extention. A light theme is included as well for the day time.
Plug 'ldelossa/vimdark'
Add this in your vimrc to change dark and light themes based on time
" use vimdark from 9pm to 10am
if strftime("%H") >= 21 || strftime("%H") <= 9
colorscheme vimdark
else
colorscheme vimlight
endif
function! DarkMode()
colorscheme vimdark
endfunction
function! LightMode()
colorscheme vimlight
endfunction