Mercurial > vim
annotate runtime/colors/evening.vim @ 24982:4cb423b9250d v8.2.3028
patch 8.2.3028: GUI mouse events not tested
Commit: https://github.com/vim/vim/commit/f1e7449d567c630601aa0cec6c663b791785a668
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Mon Jun 21 18:44:26 2021 +0200
patch 8.2.3028: GUI mouse events not tested
Problem: GUI mouse events not tested.
Solution: Add test_gui_mouse_event(). Add mouse tests. Also add a few
viminfo tests. (Yegappan Lakshmanan, closes #8407)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 21 Jun 2021 18:45:04 +0200 |
parents | bdd7fc1a38c0 |
children | 82244cfc4694 |
rev | line source |
---|---|
7 | 1 " Vim color file |
2 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
10261
bdd7fc1a38c0
commit https://github.com/vim/vim/commit/dc08328821a2c11e33dfb1980332e4923ec64fca
Christian Brabandt <cb@256bit.org>
parents:
829
diff
changeset
|
3 " Last Change: 2016 Oct 10 |
7 | 4 |
5 " This color scheme uses a dark grey background. | |
6 | |
7 " First remove all existing highlighting. | |
8 set background=dark | |
9 hi clear | |
10 if exists("syntax_on") | |
11 syntax reset | |
12 endif | |
13 | |
14 let colors_name = "evening" | |
15 | |
16 hi Normal ctermbg=DarkGrey ctermfg=White guifg=White guibg=grey20 | |
17 | |
18 " Groups used in the 'highlight' and 'guicursor' options default value. | |
19 hi ErrorMsg term=standout ctermbg=DarkRed ctermfg=White guibg=Red guifg=White | |
20 hi IncSearch term=reverse cterm=reverse gui=reverse | |
21 hi ModeMsg term=bold cterm=bold gui=bold | |
22 hi StatusLine term=reverse,bold cterm=reverse,bold gui=reverse,bold | |
23 hi StatusLineNC term=reverse cterm=reverse gui=reverse | |
24 hi VertSplit term=reverse cterm=reverse gui=reverse | |
829 | 25 hi Visual term=reverse ctermbg=black guibg=grey60 |
7 | 26 hi VisualNOS term=underline,bold cterm=underline,bold gui=underline,bold |
27 hi DiffText term=reverse cterm=bold ctermbg=Red gui=bold guibg=Red | |
28 hi Cursor guibg=Green guifg=Black | |
29 hi lCursor guibg=Cyan guifg=Black | |
30 hi Directory term=bold ctermfg=LightCyan guifg=Cyan | |
31 hi LineNr term=underline ctermfg=Yellow guifg=Yellow | |
32 hi MoreMsg term=bold ctermfg=LightGreen gui=bold guifg=SeaGreen | |
33 hi NonText term=bold ctermfg=LightBlue gui=bold guifg=LightBlue guibg=grey30 | |
34 hi Question term=standout ctermfg=LightGreen gui=bold guifg=Green | |
35 hi Search term=reverse ctermbg=Yellow ctermfg=Black guibg=Yellow guifg=Black | |
36 hi SpecialKey term=bold ctermfg=LightBlue guifg=Cyan | |
37 hi Title term=bold ctermfg=LightMagenta gui=bold guifg=Magenta | |
38 hi WarningMsg term=standout ctermfg=LightRed guifg=Red | |
39 hi WildMenu term=standout ctermbg=Yellow ctermfg=Black guibg=Yellow guifg=Black | |
40 hi Folded term=standout ctermbg=LightGrey ctermfg=DarkBlue guibg=LightGrey guifg=DarkBlue | |
41 hi FoldColumn term=standout ctermbg=LightGrey ctermfg=DarkBlue guibg=Grey guifg=DarkBlue | |
42 hi DiffAdd term=bold ctermbg=DarkBlue guibg=DarkBlue | |
43 hi DiffChange term=bold ctermbg=DarkMagenta guibg=DarkMagenta | |
44 hi DiffDelete term=bold ctermfg=Blue ctermbg=DarkCyan gui=bold guifg=Blue guibg=DarkCyan | |
829 | 45 hi CursorColumn term=reverse ctermbg=Black guibg=grey40 |
46 hi CursorLine term=underline cterm=underline guibg=grey40 | |
7 | 47 |
48 " Groups for syntax highlighting | |
10261
bdd7fc1a38c0
commit https://github.com/vim/vim/commit/dc08328821a2c11e33dfb1980332e4923ec64fca
Christian Brabandt <cb@256bit.org>
parents:
829
diff
changeset
|
49 hi Constant term=underline ctermfg=Magenta guifg=#ffa0a0 |
bdd7fc1a38c0
commit https://github.com/vim/vim/commit/dc08328821a2c11e33dfb1980332e4923ec64fca
Christian Brabandt <cb@256bit.org>
parents:
829
diff
changeset
|
50 hi Special term=bold ctermfg=LightRed guifg=Orange |
7 | 51 if &t_Co > 8 |
52 hi Statement term=bold cterm=bold ctermfg=Yellow guifg=#ffff60 gui=bold | |
53 endif | |
54 hi Ignore ctermfg=DarkGrey guifg=grey20 | |
55 | |
56 " vim: sw=2 |