Skip to content

Latest commit

 

History

History
53 lines (46 loc) · 1.44 KB

README.md

File metadata and controls

53 lines (46 loc) · 1.44 KB

vim-6colors

The Vim color scheme editor that generates from only 6 colors or a single image.

Demo

https://utubo.github.io/vim-6colors/

Click 🧪 button and choose any picture !

Examples

more...

Plugins support

Terminal

This supports terminal ansi colors. If you don't want, let g:terminal_ansi_colors.

" Example
augroup terminal_ansi_color
au!
au ColorScheme * let g:terminal_ansi_colors = [
\ '#2d3037', " black ⚠ Delete comments when you use this.
\ '#ab485f', " red
\ '#45ac90', " green
\ '#ab863b', " yellow
\ '#407baf', " blue
\ '#756187', " magenta
\ '#42939f', " cyan
\ '#ccdddd', " white
\ '#2d3037', " black (bright)
\ '#ff597a', " red (bright)
\ '#55ffcc', " green (bright)
\ '#ffc03e', " yellow (bright)
\ '#4daeff', " blue (bright)
\ '#a683bc', " magenta (bright)
\ '#51d6e5', " cyan (bright)
\ '#ffffff', " white (bright)
\ ]
augroup END

🙏

🍺 The code for the color scheme is based on vim_colorscheme_template. 🍺