diff options
| author | Max Christian Pohle | 2016-05-09 17:00:35 +0200 | 
|---|---|---|
| committer | Max Christian Pohle | 2016-05-09 17:00:35 +0200 | 
| commit | c2a13ef3f498d90fb9f46b830e14c31156635676 (patch) | |
| tree | e125ca03554399949d6ca0fd27b7cf1953cbf02c /colors | |
| parent | 8fd5f60d660f385b766b9c0e7ac874632c1cea1f (diff) | |
| download | vim-karlmarks-c2a13ef3f498d90fb9f46b830e14c31156635676.tar.bz2 vim-karlmarks-c2a13ef3f498d90fb9f46b830e14c31156635676.zip  | |
moved repository up again
this repo shell be used for vim exclusively
Diffstat (limited to 'colors')
| -rw-r--r-- | colors/coderonline.vim | 180 | 
1 files changed, 180 insertions, 0 deletions
diff --git a/colors/coderonline.vim b/colors/coderonline.vim new file mode 100644 index 0000000..f842b28 --- /dev/null +++ b/colors/coderonline.vim  | |||
| @@ -0,0 +1,180 @@ | |||
| 1 | " color theme for vim | ||
| 2 | " Maintainer: Max Christian Pohle <max@coderonline.de> | ||
| 3 | " Last Change: 07.09.2015 | ||
| 4 | " Web: http://max.coderonline.de/ | ||
| 5 | |||
| 6 | set background=dark | ||
| 7 | hi clear | ||
| 8 | if exists("syntax_on") | ||
| 9 | syntax reset | ||
| 10 | endif | ||
| 11 | let g:colors_name="coderonline" | ||
| 12 | |||
| 13 | |||
| 14 | "set guifont=Andale\ Mono\ 12 | ||
| 15 | set guifont=Liberation\ Mono\ Normal\ 11 | ||
| 16 | "set guifont=Meslo\ LG\ S\ DZ\ for\ Powerline\ 14 | ||
| 17 | "set guifont=Monospace\ 11 | ||
| 18 | "set guifont=DejaVu\ Sans\ Mono\ 11 | ||
| 19 | "set guifont=Liberation\ Mono\ for\ Powerline\ 11 | ||
| 20 | "set guifont=Envy\ Code\ R\ 11 | ||
| 21 | |||
| 22 | set number | ||
| 23 | set hls | ||
| 24 | |||
| 25 | highlight Menu gui=none cterm=none term=none guibg=white ctermbg=white guifg=black ctermfg=black | ||
| 26 | highlight Scrollbar gui=none cterm=none term=none guibg=white ctermbg=white guifg=black ctermfg=black | ||
| 27 | highlight Tooltip gui=none cterm=none term=none guibg=yellow ctermbg=yellow guifg=black ctermfg=black | ||
| 28 | |||
| 29 | highlight Normal gui=none cterm=none term=none guibg=white ctermbg=white guifg=black ctermfg=black | ||
| 30 | highlight! link NonText Normal | ||
| 31 | |||
| 32 | highlight Statement gui=bold cterm=bold term=bold guibg=white ctermbg=white guifg=#0000ff ctermfg=21 | ||
| 33 | highlight! link Boolean Statement | ||
| 34 | highlight! link Identifier Statement | ||
| 35 | |||
| 36 | highlight Type gui=bold cterm=bold term=bold guibg=white ctermbg=white guifg=DarkBlue ctermfg=darkblue | ||
| 37 | |||
| 38 | highlight Constant gui=none cterm=none term=none guibg=white ctermbg=white guifg=brown ctermfg=brown | ||
| 39 | highlight! link String Constant | ||
| 40 | highlight! link Number Constant | ||
| 41 | |||
| 42 | highlight Comment gui=none cterm=none term=none guibg=white ctermbg=white guifg=DarkGreen ctermfg=DarkGreen | ||
| 43 | highlight! link PreProc Comment | ||
| 44 | |||
| 45 | highlight StatusLine gui=bold cterm=bold term=bold guibg=lightgray ctermbg=lightgray guifg=darkgray ctermfg=darkgrey | ||
| 46 | highlight! link StatusLineNC StatusLine | ||
| 47 | |||
| 48 | highlight LineNr gui=none cterm=none term=none guibg=lightgray ctermbg=lightgray guifg=black ctermfg=black | ||
| 49 | highlight CursorLine gui=none cterm=none term=none guibg=lightgray ctermbg=lightgray | ||
| 50 | " highlight! link CursorLine LineNr | ||
| 51 | " highlight! link CursorColumn LineNr | ||
| 52 | " highlight! link ColorColumn LineNr | ||
| 53 | |||
| 54 | " Cursor the character under the cursor | ||
| 55 | highlight Cursor gui=inverse cterm=inverse term=inverse guibg=lightgray ctermbg=lightgray guifg=black ctermfg=black | ||
| 56 | highlight iCursor gui=underline cterm=underline term=underline | ||
| 57 | highlight! link CursorLineNr Cursor | ||
| 58 | highlight! link CursorIM Cursor | ||
| 59 | highlight! link Visual Cursor | ||
| 60 | highlight! link VirualNOS Cursor | ||
| 61 | " highlight! link MatchParen LineNr | ||
| 62 | highlight MatchParen guibg=yellow ctermbg=yellow | ||
| 63 | |||
| 64 | " WildMenu current match in 'wildmenu' completion | ||
| 65 | " Pmenu Popup menu: normal item. | ||
| 66 | " PmenuSel Popup menu: selected item. | ||
| 67 | " PmenuSbar Popup menu: scrollbar. | ||
| 68 | " PmenuThumb Popup menu: Thumb of the scrollbar. | ||
| 69 | highlight! link WildMenu Todo | ||
| 70 | highlight! link Popup LineNr | ||
| 71 | highlight! link PMenu Popup | ||
| 72 | highlight! link PMenuSel CursorLineNr | ||
| 73 | highlight! link PMenuSbar CursorLineNr | ||
| 74 | highlight! link PMenuThumb CursorLineNr | ||
| 75 | |||
| 76 | |||
| 77 | " Windows | ||
| 78 | highlight Title gui=bold cterm=bold term=bold guibg=lightgray ctermbg=lightgray guifg=darkgray ctermfg=darkgray | ||
| 79 | highlight! link VertSplit Title | ||
| 80 | highlight! link StatusLine Title | ||
| 81 | highlight! link StatusLineNC Title | ||
| 82 | highlight! link TabLine Title | ||
| 83 | highlight! link TabLineFill TabLine | ||
| 84 | highlight! link TabLineSel TabLine | ||
| 85 | highlight TabLineSel gui=inverse cterm=inverse term=inverse | ||
| 86 | |||
| 87 | highlight cParen gui=none cterm=none term=none guibg=white ctermbg=white guifg=orange ctermfg=brown | ||
| 88 | highlight cBlock gui=none cterm=none term=none guibg=white ctermbg=cyan guifg=orange ctermfg=brown | ||
| 89 | highlight vimParenSep gui=none cterm=none term=none guibg=white ctermbg=white guifg=orange ctermfg=brown | ||
| 90 | |||
| 91 | highlight Special gui=bold cterm=bold term=bold guibg=white ctermbg=white guifg=black ctermfg=178 | ||
| 92 | highlight! link SpecialKey Special | ||
| 93 | |||
| 94 | highlight Todo gui=none cterm=none term=none guibg=yellow ctermbg=yellow guifg=black ctermfg=black | ||
| 95 | highlight! link ModeMsg Todo | ||
| 96 | highlight! link MoreMsg Todo | ||
| 97 | highlight! link ErrorMsg Todo | ||
| 98 | highlight! link Conceal Todo | ||
| 99 | highlight! link Directory Todo | ||
| 100 | |||
| 101 | highlight Question gui=bold cterm=bold term=bold guibg=white ctermbg=white guifg=black ctermfg=black | ||
| 102 | highlight! link WarningMsg Question | ||
| 103 | |||
| 104 | highlight SpellBad gui=underline cterm=underline term=underline ctermbg=white | ||
| 105 | highlight! link SpellCap SpellBad | ||
| 106 | highlight! link SpellLocal Todo | ||
| 107 | highlight! link SpellRare Todo | ||
| 108 | " *hl-Conceal* | ||
| 109 | " *hl-DiffAdd* | ||
| 110 | " DiffAdd diff mode: Added line |diff.txt| | ||
| 111 | " *hl-DiffChange* | ||
| 112 | " DiffChange diff mode: Changed line |diff.txt| | ||
| 113 | " *hl-DiffDelete* | ||
| 114 | " DiffDelete diff mode: Deleted line |diff.txt| | ||
| 115 | " *hl-DiffText* | ||
| 116 | " DiffText diff mode: Changed text within a changed line |diff.txt| | ||
| 117 | " *hl-ErrorMsg* | ||
| 118 | " Folded line used for closed folds | ||
| 119 | " *hl-FoldColumn* | ||
| 120 | " FoldColumn 'foldcolumn' | ||
| 121 | " *hl-SignColumn* | ||
| 122 | " SignColumn column where |signs| are displayed | ||
| 123 | " *hl-IncSearch* | ||
| 124 | " IncSearch 'incsearch' highlighting; also used for the text replaced with | ||
| 125 | " ":s///c" | ||
| 126 | " *hl-LineNr* | ||
| 127 | " MatchParen The character under the cursor or just before it, if it | ||
| 128 | " is a paired bracket, and its match. |pi_paren.txt| | ||
| 129 | " | ||
| 130 | " *hl-ModeMsg* | ||
| 131 | " *hl-NonText* | ||
| 132 | " *hl-Search* | ||
| 133 | " Search Last search pattern highlighting (see 'hlsearch'). | ||
| 134 | " Also used for highlighting the current line in the quickfix | ||
| 135 | " window and similar items that need to stand out. | ||
| 136 | " *hl-SpecialKey* | ||
| 137 | " to show unprintable characters in the text, 'listchars'. | ||
| 138 | " Generally: text that is displayed differently from what it | ||
| 139 | " really is. | ||
| 140 | " *hl-SpellBad* | ||
| 141 | |||
| 142 | |||
| 143 | " ====================== Important bits ====================== | ||
| 144 | "exe 'hi Normal guifg='.s:white .' guibg='.s:darkgrey | ||
| 145 | "exe 'hi String guifg='.s:green .' guibg='.s:darkgrey .' gui=bold' | ||
| 146 | "exe 'hi Function guifg='.s:violet .' guibg='.s:darkgrey .' gui=none' | ||
| 147 | "exe 'hi Operator guifg='.s:light_orange .' guibg='.s:darkgrey .' gui=none' | ||
| 148 | "exe 'hi Type guifg='.s:yellow .' guibg='.s:darkgrey .' gui=bold' | ||
| 149 | "exe 'hi Number guifg='.s:orange .' guibg='.s:darkgrey .' gui=none' | ||
| 150 | "exe 'hi Constant guifg='.s:red .' guibg='.s:darkgrey .' gui=none' | ||
| 151 | "exe 'hi Macro guifg='.s:magenta .' guibg='.s:darkgrey .' gui=none' | ||
| 152 | "exe 'hi PreProc guifg='.s:grey_blue .' guibg='.s:darkgrey .' gui=none' | ||
| 153 | "exe 'hi Keyword guifg='.s:light_orange .' guibg='.s:darkgrey .' gui=none' | ||
| 154 | "exe 'hi Comment guifg='.s:white .' guibg='.s:darkgrey .' gui=italic' | ||
| 155 | "exe 'hi TODO guifg='.s:grey_blue .' guibg='.s:darkgrey .' gui=italic,bold' | ||
| 156 | " Lay out our palette | ||
| 157 | let s:grey_blue = '#8a9597' | ||
| 158 | let s:light_grey_blue = '#a0a8b0' | ||
| 159 | let s:dark_grey_blue = '#34383c' | ||
| 160 | let s:mid_grey_blue = '#64686c' | ||
| 161 | let s:beige = '#ceb67f' | ||
| 162 | let s:light_orange = '#ebc471' | ||
| 163 | let s:yellow = '#e3d796' | ||
| 164 | let s:violet = '#a982c8' | ||
| 165 | let s:magenta = '#a933ac' | ||
| 166 | let s:green = '#e0a96f' | ||
| 167 | let s:lightgreen = '#c2c98f' | ||
| 168 | let s:red = '#d08356' | ||
| 169 | let s:cyan = '#74dad9' | ||
| 170 | let s:darkgrey = '#1a1a1a' | ||
| 171 | let s:grey = '#303030' | ||
| 172 | let s:lightgrey = '#605958' | ||
| 173 | let s:white = '#fffedc' | ||
| 174 | let s:orange = '#d08356' | ||
| 175 | |||
| 176 | " ~~~ These are specific to color_coded ~~~ | ||
| 177 | exe 'hi Member guifg=#0000aa gui=italic' | ||
| 178 | exe 'hi Variable guifg=#8800aa gui=none' | ||
| 179 | exe 'hi Namespace guifg=#aa0000 gui=none' | ||
| 180 | exe 'hi EnumConstant guifg=#00aaaa gui=none' | ||
