Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/utubo/vim-6colors
๐จ The Vim color scheme editor that generates from only 6 colors or a single image.
https://github.com/utubo/vim-6colors
color-scheme colorscheme-generator vim
Last synced: 14 days ago
JSON representation
๐จ The Vim color scheme editor that generates from only 6 colors or a single image.
- Host: GitHub
- URL: https://github.com/utubo/vim-6colors
- Owner: utubo
- License: mit
- Created: 2021-08-22T03:36:05.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-08T06:54:30.000Z (11 months ago)
- Last Synced: 2024-08-01T17:37:51.811Z (3 months ago)
- Topics: color-scheme, colorscheme-generator, vim
- Homepage:
- Size: 159 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
- https://github.com/utubo/vim-colorscheme-yakiniku
- https://github.com/utubo/vim-colorscheme-rainycity[more...](https://github.com/utubo/vim-6colors/wiki/Examples)
## Plugins support
- [ALE](https://github.com/dense-analysis/ale)
- [Easy Motion](https://github.com/easymotion/vim-easymotion)
- [Git Gutter](https://github.com/airblade/vim-gitgutter)
- [rainbow](https://github.com/luochen1990/rainbow)
- [rainbow-csv](https://github.com/mechatroner/rainbow_csv)## Terminal
This supports terminal ansi colors.
If you don't want, let `g:terminal_ansi_colors`.
```vim
" 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](https://github.com/ggalindezb/vim_colorscheme_template).
๐บ