···11-# vim-colors-off
22-33-*This is very much a work in progress*
44-55-For a number of weeks, I ran vim with `syntax off`. It was quite nice,
66-with only two annoyances:
77-88-- Bright white on jet black was a bit off-putting.
99-- There were cases when I did miss the lack of color, vimdiff for
1010- example.
1111-1212-Therefore, I aimed to find or create a colorscheme to solve these two
1313-issues.
1414-1515-The result is very much based on the [pencil][] colorscheme, which is
1616-surprising because it's a very colorful colorscheme, but:
1717-1818-- It uses a very sane approach to defining and setting colors
1919-- It has nice background and foreground colors
2020-- In the areas where I do want color, I like how it colors things
2121-2222-[pencil]: https://github.com/reedes/vim-colors-pencil
11+# vim-colors-plain
2322424-
33+This is a fork of [vim-colors-off][] which is being developed based on my
44+personal taste.
2552626-Slightly out of date, not super exciting...
66+
77+
2782828-## Installation
99+## Installation & Usage
29103030-- Use [Vundle][]
3131-- Add "pbrisbin/vim-colors-off" as a plugin
1111+With [vim-plug][] you add this to the `.vimrc`:
32123333-[vundle]: https://github.com/gmarik/Vundle.vim
1313+```
1414+Plug 'andreypopp/vim-colors-plain'
1515+```
34163535-## Usage
1717+Then:
36183719```
3838-:colorscheme off
2020+set background=light " Set to dark for a dark variant
2121+colorscheme plain
3922```
40234141-Supports both `background=light` and `background=dark`.
2424+[vim-colors-off]: https://github.com/pbrisbin/vim-colors-off
2525+[vim-plug]: https://github.com/junegunn/vim-plug
+9-6
colors/off.vim
colors/plain.vim
···11-" Name: off.vim
11+" Name: plain.vim
22" Version: 0.1
33-" Maintainer: github.com/pbrisbin
33+" Maintainer: github.com/andreypopp
44" License: The MIT License (MIT)
55"
66-" A colorscheme meant to look like a more pleasant version of syntax off.
77-" Structure and what little color there is is taken from pencil.vim
66+" Based on
77+"
88+" https://github.com/pbrisbin/vim-colors-off (MIT License)
99+"
1010+" which in turn based on
811"
99-" https://github.com/reedes/vim-colors-pencil
1212+" https://github.com/reedes/vim-colors-pencil (MIT License)
1013"
1114"""
1215hi clear
···1518 syntax reset
1619endif
17201818-let g:colors_name='off'
2121+let g:colors_name='plain'
19222023let s:black = { "gui": "#121212", "cterm": "0" }
2124let s:medium_gray = { "gui": "#767676", "cterm": "243" }