annotate src/testdir/test_syn_attr.vim @ 19783:546bdeef35f1 v8.2.0448

patch 8.2.0448: various functions not properly tested Commit: https://github.com/vim/vim/commit/0e05de46226eb4e5ea580beefa71831f92d613d3 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 25 22:23:46 2020 +0100 patch 8.2.0448: various functions not properly tested Problem: Various functions not properly tested. Solution: Add more tests, especially for failures. (Yegappan Lakshmanan, closes #5843)
author Bram Moolenaar <Bram@vim.org>
date Wed, 25 Mar 2020 22:30:04 +0100
parents 624109b3766e
children 60977de70684
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8514
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 " Test syntax highlighting functions.
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3 func Test_missing_attr()
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
4 hi Mine term=bold cterm=italic
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
5 call assert_equal('Mine', synIDattr(hlID("Mine"), "name"))
17914
af3d441845cd patch 8.1.1953: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 9591
diff changeset
6 call assert_equal('', synIDattr("Mine"->hlID(), "bg", 'term'))
19783
546bdeef35f1 patch 8.2.0448: various functions not properly tested
Bram Moolenaar <Bram@vim.org>
parents: 18056
diff changeset
7 call assert_equal('', synIDattr("Mine"->hlID(), "fg", 'term'))
546bdeef35f1 patch 8.2.0448: various functions not properly tested
Bram Moolenaar <Bram@vim.org>
parents: 18056
diff changeset
8 call assert_equal('', synIDattr("Mine"->hlID(), "sp", 'term'))
8514
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
9 call assert_equal('1', synIDattr(hlID("Mine"), "bold", 'term'))
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
10 call assert_equal('1', synIDattr(hlID("Mine"), "italic", 'cterm'))
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
11 hi Mine term=reverse cterm=inverse
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
12 call assert_equal('1', synIDattr(hlID("Mine"), "reverse", 'term'))
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
13 call assert_equal('1', synIDattr(hlID("Mine"), "inverse", 'cterm'))
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
14 hi Mine term=underline cterm=standout gui=undercurl
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
15 call assert_equal('1', synIDattr(hlID("Mine"), "underline", 'term'))
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
16 call assert_equal('1', synIDattr(hlID("Mine"), "standout", 'cterm'))
17914
af3d441845cd patch 8.1.1953: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 9591
diff changeset
17 call assert_equal('1', synIDattr("Mine"->hlID(), "undercurl", 'gui'))
18056
624109b3766e patch 8.1.2023: no test for synIDattr() returning "strikethrough"
Bram Moolenaar <Bram@vim.org>
parents: 17914
diff changeset
18 hi Mine gui=strikethrough
624109b3766e patch 8.1.2023: no test for synIDattr() returning "strikethrough"
Bram Moolenaar <Bram@vim.org>
parents: 17914
diff changeset
19 call assert_equal('1', synIDattr(hlID("Mine"), "strikethrough", 'gui'))
8514
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
20 hi Mine term=NONE cterm=NONE gui=NONE
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
21 call assert_equal('', synIDattr(hlID("Mine"), "bold", 'term'))
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
22 call assert_equal('', synIDattr(hlID("Mine"), "italic", 'cterm'))
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
23 call assert_equal('', synIDattr(hlID("Mine"), "reverse", 'term'))
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
24 call assert_equal('', synIDattr(hlID("Mine"), "inverse", 'cterm'))
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
25 call assert_equal('', synIDattr(hlID("Mine"), "underline", 'term'))
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
26 call assert_equal('', synIDattr(hlID("Mine"), "standout", 'cterm'))
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
27 call assert_equal('', synIDattr(hlID("Mine"), "undercurl", 'gui'))
18056
624109b3766e patch 8.1.2023: no test for synIDattr() returning "strikethrough"
Bram Moolenaar <Bram@vim.org>
parents: 17914
diff changeset
28 call assert_equal('', synIDattr(hlID("Mine"), "strikethrough", 'gui'))
8514
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
29
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
30 if has('gui')
8518
24ac80377d86 commit https://github.com/vim/vim/commit/c835293d54c223627c7d4516ee273c21a3506fa1
Christian Brabandt <cb@256bit.org>
parents: 8514
diff changeset
31 let fontname = getfontname()
24ac80377d86 commit https://github.com/vim/vim/commit/c835293d54c223627c7d4516ee273c21a3506fa1
Christian Brabandt <cb@256bit.org>
parents: 8514
diff changeset
32 if fontname == ''
24ac80377d86 commit https://github.com/vim/vim/commit/c835293d54c223627c7d4516ee273c21a3506fa1
Christian Brabandt <cb@256bit.org>
parents: 8514
diff changeset
33 let fontname = 'something'
24ac80377d86 commit https://github.com/vim/vim/commit/c835293d54c223627c7d4516ee273c21a3506fa1
Christian Brabandt <cb@256bit.org>
parents: 8514
diff changeset
34 endif
9135
35422e34815f commit https://github.com/vim/vim/commit/180fc2d41812c49b60224a1ca89945a002a090f5
Christian Brabandt <cb@256bit.org>
parents: 8518
diff changeset
35 exe "hi Mine guifg=blue guibg=red font='" . fontname . "'"
8514
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
36 call assert_equal('blue', synIDattr(hlID("Mine"), "fg", 'gui'))
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
37 call assert_equal('red', synIDattr(hlID("Mine"), "bg", 'gui'))
8518
24ac80377d86 commit https://github.com/vim/vim/commit/c835293d54c223627c7d4516ee273c21a3506fa1
Christian Brabandt <cb@256bit.org>
parents: 8514
diff changeset
38 call assert_equal(fontname, synIDattr(hlID("Mine"), "font", 'gui'))
8514
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
39 endif
260d01c1cd17 commit https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
40 endfunc
9591
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
41
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
42 func Test_color_names()
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
43 let colors = [
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
44 \ 'AliceBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
45 \ 'AntiqueWhite',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
46 \ 'AntiqueWhite1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
47 \ 'AntiqueWhite2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
48 \ 'AntiqueWhite3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
49 \ 'AntiqueWhite4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
50 \ 'BlanchedAlmond',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
51 \ 'BlueViolet',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
52 \ 'CadetBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
53 \ 'CadetBlue1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
54 \ 'CadetBlue2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
55 \ 'CadetBlue3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
56 \ 'CadetBlue4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
57 \ 'CornflowerBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
58 \ 'DarkBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
59 \ 'DarkCyan',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
60 \ 'DarkGoldenrod',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
61 \ 'DarkGoldenrod1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
62 \ 'DarkGoldenrod2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
63 \ 'DarkGoldenrod3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
64 \ 'DarkGoldenrod4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
65 \ 'DarkGray',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
66 \ 'DarkGreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
67 \ 'DarkGrey',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
68 \ 'DarkKhaki',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
69 \ 'DarkMagenta',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
70 \ 'DarkOliveGreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
71 \ 'DarkOliveGreen1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
72 \ 'DarkOliveGreen2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
73 \ 'DarkOliveGreen3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
74 \ 'DarkOliveGreen4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
75 \ 'DarkOrange',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
76 \ 'DarkOrange1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
77 \ 'DarkOrange2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
78 \ 'DarkOrange3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
79 \ 'DarkOrange4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
80 \ 'DarkOrchid',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
81 \ 'DarkOrchid1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
82 \ 'DarkOrchid2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
83 \ 'DarkOrchid3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
84 \ 'DarkOrchid4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
85 \ 'DarkRed',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
86 \ 'DarkSalmon',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
87 \ 'DarkSeaGreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
88 \ 'DarkSeaGreen1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
89 \ 'DarkSeaGreen2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
90 \ 'DarkSeaGreen3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
91 \ 'DarkSeaGreen4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
92 \ 'DarkSlateBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
93 \ 'DarkSlateGray',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
94 \ 'DarkSlateGray1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
95 \ 'DarkSlateGray2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
96 \ 'DarkSlateGray3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
97 \ 'DarkSlateGray4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
98 \ 'DarkSlateGrey',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
99 \ 'DarkTurquoise',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
100 \ 'DarkViolet',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
101 \ 'DeepPink',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
102 \ 'DeepPink1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
103 \ 'DeepPink2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
104 \ 'DeepPink3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
105 \ 'DeepPink4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
106 \ 'DeepSkyBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
107 \ 'DeepSkyBlue1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
108 \ 'DeepSkyBlue2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
109 \ 'DeepSkyBlue3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
110 \ 'DeepSkyBlue4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
111 \ 'DimGray',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
112 \ 'DimGrey',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
113 \ 'DodgerBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
114 \ 'DodgerBlue1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
115 \ 'DodgerBlue2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
116 \ 'DodgerBlue3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
117 \ 'DodgerBlue4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
118 \ 'FloralWhite',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
119 \ 'ForestGreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
120 \ 'GhostWhite',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
121 \ 'GreenYellow',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
122 \ 'HotPink',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
123 \ 'HotPink1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
124 \ 'HotPink2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
125 \ 'HotPink3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
126 \ 'HotPink4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
127 \ 'IndianRed',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
128 \ 'IndianRed1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
129 \ 'IndianRed2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
130 \ 'IndianRed3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
131 \ 'IndianRed4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
132 \ 'LavenderBlush',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
133 \ 'LavenderBlush1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
134 \ 'LavenderBlush2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
135 \ 'LavenderBlush3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
136 \ 'LavenderBlush4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
137 \ 'LawnGreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
138 \ 'LemonChiffon',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
139 \ 'LemonChiffon1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
140 \ 'LemonChiffon2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
141 \ 'LemonChiffon3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
142 \ 'LemonChiffon4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
143 \ 'LightBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
144 \ 'LightBlue1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
145 \ 'LightBlue2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
146 \ 'LightBlue3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
147 \ 'LightBlue4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
148 \ 'LightCoral',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
149 \ 'LightCyan',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
150 \ 'LightCyan1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
151 \ 'LightCyan2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
152 \ 'LightCyan3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
153 \ 'LightCyan4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
154 \ 'LightGoldenrod',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
155 \ 'LightGoldenrod1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
156 \ 'LightGoldenrod2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
157 \ 'LightGoldenrod3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
158 \ 'LightGoldenrod4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
159 \ 'LightGoldenrodYellow',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
160 \ 'LightGray',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
161 \ 'LightGreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
162 \ 'LightGrey',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
163 \ 'LightPink',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
164 \ 'LightPink1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
165 \ 'LightPink2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
166 \ 'LightPink3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
167 \ 'LightPink4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
168 \ 'LightSalmon',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
169 \ 'LightSalmon1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
170 \ 'LightSalmon2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
171 \ 'LightSalmon3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
172 \ 'LightSalmon4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
173 \ 'LightSeaGreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
174 \ 'LightSkyBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
175 \ 'LightSkyBlue1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
176 \ 'LightSkyBlue2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
177 \ 'LightSkyBlue3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
178 \ 'LightSkyBlue4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
179 \ 'LightSlateBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
180 \ 'LightSlateGray',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
181 \ 'LightSlateGrey',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
182 \ 'LightSteelBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
183 \ 'LightSteelBlue1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
184 \ 'LightSteelBlue2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
185 \ 'LightSteelBlue3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
186 \ 'LightSteelBlue4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
187 \ 'LightYellow',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
188 \ 'LightYellow1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
189 \ 'LightYellow2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
190 \ 'LightYellow3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
191 \ 'LightYellow4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
192 \ 'LimeGreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
193 \ 'MediumAquamarine',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
194 \ 'MediumBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
195 \ 'MediumOrchid',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
196 \ 'MediumOrchid1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
197 \ 'MediumOrchid2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
198 \ 'MediumOrchid3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
199 \ 'MediumOrchid4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
200 \ 'MediumPurple',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
201 \ 'MediumPurple1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
202 \ 'MediumPurple2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
203 \ 'MediumPurple3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
204 \ 'MediumPurple4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
205 \ 'MediumSeaGreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
206 \ 'MediumSlateBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
207 \ 'MediumSpringGreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
208 \ 'MediumTurquoise',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
209 \ 'MediumVioletRed',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
210 \ 'MidnightBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
211 \ 'MintCream',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
212 \ 'MistyRose',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
213 \ 'MistyRose1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
214 \ 'MistyRose2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
215 \ 'MistyRose3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
216 \ 'MistyRose4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
217 \ 'NavajoWhite',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
218 \ 'NavajoWhite1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
219 \ 'NavajoWhite2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
220 \ 'NavajoWhite3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
221 \ 'NavajoWhite4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
222 \ 'NavyBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
223 \ 'OldLace',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
224 \ 'OliveDrab',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
225 \ 'OliveDrab1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
226 \ 'OliveDrab2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
227 \ 'OliveDrab3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
228 \ 'OliveDrab4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
229 \ 'OrangeRed',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
230 \ 'OrangeRed1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
231 \ 'OrangeRed2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
232 \ 'OrangeRed3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
233 \ 'OrangeRed4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
234 \ 'PaleGoldenrod',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
235 \ 'PaleGreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
236 \ 'PaleGreen1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
237 \ 'PaleGreen2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
238 \ 'PaleGreen3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
239 \ 'PaleGreen4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
240 \ 'PaleTurquoise',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
241 \ 'PaleTurquoise1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
242 \ 'PaleTurquoise2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
243 \ 'PaleTurquoise3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
244 \ 'PaleTurquoise4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
245 \ 'PaleVioletRed',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
246 \ 'PaleVioletRed1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
247 \ 'PaleVioletRed2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
248 \ 'PaleVioletRed3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
249 \ 'PaleVioletRed4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
250 \ 'PapayaWhip',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
251 \ 'PeachPuff',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
252 \ 'PeachPuff1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
253 \ 'PeachPuff2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
254 \ 'PeachPuff3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
255 \ 'PeachPuff4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
256 \ 'PowderBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
257 \ 'RosyBrown',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
258 \ 'RosyBrown1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
259 \ 'RosyBrown2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
260 \ 'RosyBrown3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
261 \ 'RosyBrown4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
262 \ 'RoyalBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
263 \ 'RoyalBlue1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
264 \ 'RoyalBlue2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
265 \ 'RoyalBlue3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
266 \ 'RoyalBlue4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
267 \ 'SaddleBrown',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
268 \ 'SandyBrown',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
269 \ 'SeaGreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
270 \ 'SeaGreen1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
271 \ 'SeaGreen2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
272 \ 'SeaGreen3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
273 \ 'SeaGreen4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
274 \ 'SkyBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
275 \ 'SkyBlue1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
276 \ 'SkyBlue2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
277 \ 'SkyBlue3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
278 \ 'SkyBlue4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
279 \ 'SlateBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
280 \ 'SlateBlue1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
281 \ 'SlateBlue2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
282 \ 'SlateBlue3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
283 \ 'SlateBlue4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
284 \ 'SlateGray',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
285 \ 'SlateGray1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
286 \ 'SlateGray2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
287 \ 'SlateGray3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
288 \ 'SlateGray4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
289 \ 'SlateGrey',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
290 \ 'SpringGreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
291 \ 'SpringGreen1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
292 \ 'SpringGreen2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
293 \ 'SpringGreen3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
294 \ 'SpringGreen4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
295 \ 'SteelBlue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
296 \ 'SteelBlue1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
297 \ 'SteelBlue2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
298 \ 'SteelBlue3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
299 \ 'SteelBlue4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
300 \ 'VioletRed',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
301 \ 'VioletRed1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
302 \ 'VioletRed2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
303 \ 'VioletRed3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
304 \ 'VioletRed4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
305 \ 'WhiteSmoke',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
306 \ 'YellowGreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
307 \ 'alice blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
308 \ 'antique white',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
309 \ 'aquamarine',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
310 \ 'aquamarine1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
311 \ 'aquamarine2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
312 \ 'aquamarine3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
313 \ 'aquamarine4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
314 \ 'azure',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
315 \ 'azure1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
316 \ 'azure2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
317 \ 'azure3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
318 \ 'azure4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
319 \ 'beige',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
320 \ 'bisque',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
321 \ 'bisque1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
322 \ 'bisque2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
323 \ 'bisque3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
324 \ 'bisque4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
325 \ 'black',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
326 \ 'blanched almond',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
327 \ 'blue violet',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
328 \ 'blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
329 \ 'blue1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
330 \ 'blue2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
331 \ 'blue3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
332 \ 'blue4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
333 \ 'brown',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
334 \ 'brown1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
335 \ 'brown2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
336 \ 'brown3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
337 \ 'brown4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
338 \ 'burlywood',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
339 \ 'burlywood1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
340 \ 'burlywood2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
341 \ 'burlywood3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
342 \ 'burlywood4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
343 \ 'cadet blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
344 \ 'chartreuse',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
345 \ 'chartreuse1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
346 \ 'chartreuse2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
347 \ 'chartreuse3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
348 \ 'chartreuse4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
349 \ 'chocolate',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
350 \ 'chocolate1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
351 \ 'chocolate2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
352 \ 'chocolate3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
353 \ 'chocolate4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
354 \ 'coral',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
355 \ 'coral1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
356 \ 'coral2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
357 \ 'coral3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
358 \ 'coral4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
359 \ 'cornflower blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
360 \ 'cornsilk',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
361 \ 'cornsilk1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
362 \ 'cornsilk2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
363 \ 'cornsilk3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
364 \ 'cornsilk4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
365 \ 'cyan',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
366 \ 'cyan1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
367 \ 'cyan2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
368 \ 'cyan3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
369 \ 'cyan4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
370 \ 'dark blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
371 \ 'dark cyan',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
372 \ 'dark goldenrod',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
373 \ 'dark gray',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
374 \ 'dark green',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
375 \ 'dark grey',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
376 \ 'dark khaki',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
377 \ 'dark magenta',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
378 \ 'dark olive green',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
379 \ 'dark orange',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
380 \ 'dark orchid',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
381 \ 'dark red',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
382 \ 'dark salmon',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
383 \ 'dark sea green',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
384 \ 'dark slate blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
385 \ 'dark slate gray',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
386 \ 'dark slate grey',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
387 \ 'dark turquoise',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
388 \ 'dark violet',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
389 \ 'darkblue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
390 \ 'darkcyan',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
391 \ 'darkgray',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
392 \ 'darkgreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
393 \ 'darkgrey',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
394 \ 'darkmagenta',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
395 \ 'darkred',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
396 \ 'darkyellow',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
397 \ 'deep pink',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
398 \ 'deep sky blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
399 \ 'dim gray',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
400 \ 'dim grey',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
401 \ 'dodger blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
402 \ 'firebrick',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
403 \ 'firebrick1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
404 \ 'firebrick2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
405 \ 'firebrick3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
406 \ 'firebrick4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
407 \ 'floral white',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
408 \ 'forest green',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
409 \ 'gainsboro',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
410 \ 'ghost white',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
411 \ 'gold',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
412 \ 'gold1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
413 \ 'gold2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
414 \ 'gold3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
415 \ 'gold4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
416 \ 'goldenrod',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
417 \ 'goldenrod1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
418 \ 'goldenrod2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
419 \ 'goldenrod3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
420 \ 'goldenrod4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
421 \ 'gray',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
422 \ 'gray0',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
423 \ 'gray1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
424 \ 'gray10',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
425 \ 'gray100',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
426 \ 'gray11',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
427 \ 'gray12',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
428 \ 'gray13',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
429 \ 'gray14',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
430 \ 'gray15',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
431 \ 'gray16',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
432 \ 'gray17',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
433 \ 'gray18',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
434 \ 'gray19',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
435 \ 'gray2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
436 \ 'gray20',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
437 \ 'gray21',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
438 \ 'gray22',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
439 \ 'gray23',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
440 \ 'gray24',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
441 \ 'gray25',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
442 \ 'gray26',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
443 \ 'gray27',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
444 \ 'gray28',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
445 \ 'gray29',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
446 \ 'gray3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
447 \ 'gray30',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
448 \ 'gray31',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
449 \ 'gray32',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
450 \ 'gray33',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
451 \ 'gray34',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
452 \ 'gray35',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
453 \ 'gray36',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
454 \ 'gray37',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
455 \ 'gray38',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
456 \ 'gray39',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
457 \ 'gray4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
458 \ 'gray40',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
459 \ 'gray41',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
460 \ 'gray42',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
461 \ 'gray43',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
462 \ 'gray44',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
463 \ 'gray45',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
464 \ 'gray46',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
465 \ 'gray47',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
466 \ 'gray48',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
467 \ 'gray49',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
468 \ 'gray5',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
469 \ 'gray50',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
470 \ 'gray51',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
471 \ 'gray52',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
472 \ 'gray53',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
473 \ 'gray54',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
474 \ 'gray55',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
475 \ 'gray56',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
476 \ 'gray57',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
477 \ 'gray58',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
478 \ 'gray59',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
479 \ 'gray6',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
480 \ 'gray60',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
481 \ 'gray61',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
482 \ 'gray62',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
483 \ 'gray63',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
484 \ 'gray64',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
485 \ 'gray65',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
486 \ 'gray66',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
487 \ 'gray67',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
488 \ 'gray68',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
489 \ 'gray69',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
490 \ 'gray7',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
491 \ 'gray70',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
492 \ 'gray71',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
493 \ 'gray72',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
494 \ 'gray73',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
495 \ 'gray74',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
496 \ 'gray75',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
497 \ 'gray76',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
498 \ 'gray77',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
499 \ 'gray78',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
500 \ 'gray79',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
501 \ 'gray8',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
502 \ 'gray80',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
503 \ 'gray81',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
504 \ 'gray82',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
505 \ 'gray83',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
506 \ 'gray84',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
507 \ 'gray85',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
508 \ 'gray86',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
509 \ 'gray87',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
510 \ 'gray88',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
511 \ 'gray89',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
512 \ 'gray9',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
513 \ 'gray90',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
514 \ 'gray91',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
515 \ 'gray92',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
516 \ 'gray93',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
517 \ 'gray94',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
518 \ 'gray95',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
519 \ 'gray96',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
520 \ 'gray97',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
521 \ 'gray98',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
522 \ 'gray99',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
523 \ 'green yellow',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
524 \ 'green',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
525 \ 'green1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
526 \ 'green2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
527 \ 'green3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
528 \ 'green4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
529 \ 'grey',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
530 \ 'grey0',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
531 \ 'grey1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
532 \ 'grey10',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
533 \ 'grey100',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
534 \ 'grey11',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
535 \ 'grey12',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
536 \ 'grey13',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
537 \ 'grey14',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
538 \ 'grey15',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
539 \ 'grey16',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
540 \ 'grey17',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
541 \ 'grey18',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
542 \ 'grey19',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
543 \ 'grey2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
544 \ 'grey20',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
545 \ 'grey21',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
546 \ 'grey22',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
547 \ 'grey23',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
548 \ 'grey24',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
549 \ 'grey25',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
550 \ 'grey26',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
551 \ 'grey27',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
552 \ 'grey28',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
553 \ 'grey29',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
554 \ 'grey3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
555 \ 'grey30',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
556 \ 'grey31',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
557 \ 'grey32',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
558 \ 'grey33',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
559 \ 'grey34',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
560 \ 'grey35',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
561 \ 'grey36',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
562 \ 'grey37',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
563 \ 'grey38',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
564 \ 'grey39',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
565 \ 'grey4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
566 \ 'grey40',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
567 \ 'grey41',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
568 \ 'grey42',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
569 \ 'grey43',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
570 \ 'grey44',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
571 \ 'grey45',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
572 \ 'grey46',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
573 \ 'grey47',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
574 \ 'grey48',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
575 \ 'grey49',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
576 \ 'grey5',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
577 \ 'grey50',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
578 \ 'grey51',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
579 \ 'grey52',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
580 \ 'grey53',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
581 \ 'grey54',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
582 \ 'grey55',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
583 \ 'grey56',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
584 \ 'grey57',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
585 \ 'grey58',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
586 \ 'grey59',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
587 \ 'grey6',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
588 \ 'grey60',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
589 \ 'grey61',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
590 \ 'grey62',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
591 \ 'grey63',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
592 \ 'grey64',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
593 \ 'grey65',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
594 \ 'grey66',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
595 \ 'grey67',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
596 \ 'grey68',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
597 \ 'grey69',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
598 \ 'grey7',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
599 \ 'grey70',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
600 \ 'grey71',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
601 \ 'grey72',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
602 \ 'grey73',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
603 \ 'grey74',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
604 \ 'grey75',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
605 \ 'grey76',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
606 \ 'grey77',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
607 \ 'grey78',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
608 \ 'grey79',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
609 \ 'grey8',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
610 \ 'grey80',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
611 \ 'grey81',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
612 \ 'grey82',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
613 \ 'grey83',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
614 \ 'grey84',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
615 \ 'grey85',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
616 \ 'grey86',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
617 \ 'grey87',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
618 \ 'grey88',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
619 \ 'grey89',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
620 \ 'grey9',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
621 \ 'grey90',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
622 \ 'grey91',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
623 \ 'grey92',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
624 \ 'grey93',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
625 \ 'grey94',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
626 \ 'grey95',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
627 \ 'grey96',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
628 \ 'grey97',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
629 \ 'grey98',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
630 \ 'grey99',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
631 \ 'honeydew',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
632 \ 'honeydew1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
633 \ 'honeydew2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
634 \ 'honeydew3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
635 \ 'honeydew4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
636 \ 'hot pink',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
637 \ 'indian red',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
638 \ 'ivory',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
639 \ 'ivory1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
640 \ 'ivory2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
641 \ 'ivory3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
642 \ 'ivory4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
643 \ 'khaki',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
644 \ 'khaki1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
645 \ 'khaki2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
646 \ 'khaki3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
647 \ 'khaki4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
648 \ 'lavender blush',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
649 \ 'lavender',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
650 \ 'lawn green',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
651 \ 'lemon chiffon',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
652 \ 'light blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
653 \ 'light coral',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
654 \ 'light cyan',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
655 \ 'light goldenrod yellow',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
656 \ 'light goldenrod',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
657 \ 'light gray',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
658 \ 'light green',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
659 \ 'light grey',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
660 \ 'light pink',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
661 \ 'light salmon',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
662 \ 'light sea green',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
663 \ 'light sky blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
664 \ 'light slate blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
665 \ 'light slate gray',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
666 \ 'light slate grey',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
667 \ 'light steel blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
668 \ 'light yellow',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
669 \ 'lightblue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
670 \ 'lightcyan',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
671 \ 'lightgray',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
672 \ 'lightgreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
673 \ 'lightgrey',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
674 \ 'lightmagenta',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
675 \ 'lightred',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
676 \ 'lightyellow',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
677 \ 'lime green',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
678 \ 'linen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
679 \ 'magenta',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
680 \ 'magenta1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
681 \ 'magenta2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
682 \ 'magenta3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
683 \ 'magenta4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
684 \ 'maroon',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
685 \ 'maroon1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
686 \ 'maroon2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
687 \ 'maroon3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
688 \ 'maroon4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
689 \ 'medium aquamarine',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
690 \ 'medium blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
691 \ 'medium orchid',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
692 \ 'medium purple',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
693 \ 'medium sea green',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
694 \ 'medium slate blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
695 \ 'medium spring green',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
696 \ 'medium turquoise',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
697 \ 'medium violet red',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
698 \ 'midnight blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
699 \ 'mint cream',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
700 \ 'misty rose',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
701 \ 'moccasin',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
702 \ 'navajo white',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
703 \ 'navy blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
704 \ 'navy',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
705 \ 'old lace',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
706 \ 'olive drab',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
707 \ 'orange red',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
708 \ 'orange',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
709 \ 'orange1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
710 \ 'orange2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
711 \ 'orange3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
712 \ 'orange4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
713 \ 'orchid',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
714 \ 'orchid1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
715 \ 'orchid2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
716 \ 'orchid3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
717 \ 'orchid4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
718 \ 'pale goldenrod',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
719 \ 'pale green',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
720 \ 'pale turquoise',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
721 \ 'pale violet red',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
722 \ 'papaya whip',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
723 \ 'peach puff',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
724 \ 'peru',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
725 \ 'pink',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
726 \ 'pink1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
727 \ 'pink2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
728 \ 'pink3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
729 \ 'pink4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
730 \ 'plum',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
731 \ 'plum1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
732 \ 'plum2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
733 \ 'plum3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
734 \ 'plum4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
735 \ 'powder blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
736 \ 'purple',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
737 \ 'purple1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
738 \ 'purple2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
739 \ 'purple3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
740 \ 'purple4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
741 \ 'red',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
742 \ 'red1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
743 \ 'red2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
744 \ 'red3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
745 \ 'red4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
746 \ 'rosy brown',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
747 \ 'royal blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
748 \ 'saddle brown',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
749 \ 'salmon',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
750 \ 'salmon1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
751 \ 'salmon2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
752 \ 'salmon3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
753 \ 'salmon4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
754 \ 'sandy brown',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
755 \ 'sea green',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
756 \ 'seagreen',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
757 \ 'seashell',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
758 \ 'seashell1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
759 \ 'seashell2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
760 \ 'seashell3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
761 \ 'seashell4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
762 \ 'sienna',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
763 \ 'sienna1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
764 \ 'sienna2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
765 \ 'sienna3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
766 \ 'sienna4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
767 \ 'sky blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
768 \ 'slate blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
769 \ 'slate gray',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
770 \ 'slate grey',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
771 \ 'slateblue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
772 \ 'snow',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
773 \ 'snow1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
774 \ 'snow2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
775 \ 'snow3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
776 \ 'snow4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
777 \ 'spring green',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
778 \ 'steel blue',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
779 \ 'tan',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
780 \ 'tan1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
781 \ 'tan2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
782 \ 'tan3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
783 \ 'tan4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
784 \ 'thistle',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
785 \ 'thistle1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
786 \ 'thistle2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
787 \ 'thistle3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
788 \ 'thistle4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
789 \ 'tomato',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
790 \ 'tomato1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
791 \ 'tomato2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
792 \ 'tomato3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
793 \ 'tomato4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
794 \ 'turquoise',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
795 \ 'turquoise1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
796 \ 'turquoise2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
797 \ 'turquoise3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
798 \ 'turquoise4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
799 \ 'violet red',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
800 \ 'violet',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
801 \ 'wheat',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
802 \ 'wheat1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
803 \ 'wheat2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
804 \ 'wheat3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
805 \ 'wheat4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
806 \ 'white smoke',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
807 \ 'white',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
808 \ 'yellow green',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
809 \ 'yellow',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
810 \ 'yellow1',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
811 \ 'yellow2',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
812 \ 'yellow3',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
813 \ 'yellow4',
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
814 \ ]
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
815 for color in colors
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
816 " just test that the color name can be found.
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
817 exe "hi Mine guifg='" . color . "'"
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
818 endfor
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
819
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
820 " case is ignored
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
821 hi Mine guifg=blanchedalmond
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
822 hi Mine guifg=BLANCHEDALMOND
201773c00b96 commit https://github.com/vim/vim/commit/68015bbd846181d49842d6ef60246c4195d20b89
Christian Brabandt <cb@256bit.org>
parents: 9135
diff changeset
823 endfunc
19783
546bdeef35f1 patch 8.2.0448: various functions not properly tested
Bram Moolenaar <Bram@vim.org>
parents: 18056
diff changeset
824
546bdeef35f1 patch 8.2.0448: various functions not properly tested
Bram Moolenaar <Bram@vim.org>
parents: 18056
diff changeset
825 " vim: shiftwidth=2 sts=2 expandtab