]> git.r.bdr.sh - rbdr/dotfiles/blame - vim/colors/synic.vim
Turn off the blur
[rbdr/dotfiles] / vim / colors / synic.vim
CommitLineData
0d23b6e5
BB
1" ------------------------------------------------------------------
2" Filename: synic.vim
3" Last Modified: May, 14 2007 (10:47)
4" Maintainer: Adam Olsen (arolsen@gmail.com)
5" Copyright: 2007 Adam Olsen
6" This script is free software; you can redistribute it and/or
7" modify it under the terms of the GNU General Public License as
8" published by the Free Software Foundation; either version 2 of
9" the License, or (at your option) any later version.
10" Description: Vim colorscheme file.
11" Install: Put this file in the users colors directory (~/.vim/colors)
12" then load it with :colorscheme synic
13" ------------------------------------------------------------------
14""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
15""
16"" SPECIAL NOTE:
17"" I believe this colorscheme is based off of Hans
18"" Fugal's colorscheme "desert".
19"" http://hans.fugal.net/vim/colors/desert.html
20"" I might be wrong on this... if it looks like it was based off
21"" of your colorscheme, let me know so I can give you credits.
22""
23""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
24
25
26set background=dark
27hi clear
28if exists("syntax_on")
29 syntax reset
30endif
31
32let g:colors_name = "synic"
33
34hi Normal guifg=ivory guibg=Black
35
36hi TabLineFill guifg=#272d2f guibg=#272d2f gui=None
37hi TabLine guifg=MistyRose3 guibg=#272d2f gui=None
38hi TabLineSel guifg=LightBlue3 guibg=#272d2f gui=None
39hi ErrorMsg gui=NONE guifg=Red guibg=Linen
40hi IncSearch gui=NONE guibg=LightGreen guifg=Black
41hi ModeMsg gui=NONE guifg=fg guibg=bg
42hi StatusLine gui=NONE guifg=LightBlue3 guibg=#272d2f
43hi StatusLineNC gui=NONE guifg=MistyRose3 guibg=#272d2f
44hi VertSplit gui=NONE guifg=LightBlue4 guibg=Black
45hi Visual gui=reverse guifg=LightBlue4 guibg=Black
46hi VisualNOS gui=underline guifg=fg guibg=bg
47hi DiffText gui=NONE guifg=Yellow guibg=LightSkyBlue4
48hi Cursor guibg=Lavender guifg=Black
49hi lCursor guibg=Lavender guifg=Black
50hi Directory guifg=LightGreen guibg=bg
51hi LineNr guifg=LightBlue3 guibg=bg
52hi MoreMsg gui=NONE guifg=SeaGreen guibg=bg
53hi NonText gui=NONE guifg=Cyan4 guibg=Black
54hi Question gui=NONE guifg=LimeGreen guibg=bg
55hi Search gui=NONE guifg=SkyBlue4 guibg=Bisque
56hi SpecialKey guifg=Cyan guibg=bg
57hi Title gui=NONE guifg=Yellow2 guibg=bg
58hi WarningMsg guifg=Tomato3 guibg=Black
59hi WildMenu gui=NONE guifg=Black guibg=SkyBlue4
60hi Folded guifg=#f4aba2 guibg=bg
61hi FoldColumn guifg=DarkBlue guibg=Grey
62hi DiffAdd gui=NONE guifg=Blue guibg=LightCyan
63hi DiffChange gui=NONE guifg=white guibg=LightCyan4
64hi DiffDelete gui=None guifg=LightBlue guibg=LightCyan
65
66hi Constant gui=NONE guifg=MistyRose3 guibg=bg
67hi String gui=NONE guifg=LightBlue3 guibg=bg
68hi Special gui=NONE guifg=GoldenRod guibg=bg
69hi Statement gui=NONE guifg=khaki guibg=bg
70hi Operator gui=NONE guifg=#8673e8 guibg=bg
71hi Ignore gui=NONE guifg=bg guibg=bg
72hi ToDo gui=NONE guifg=DodgerBlue guibg=bg
73hi Error gui=NONE guifg=Red guibg=Linen
74hi Comment gui=NONE guifg=SlateGrey guibg=bg
75hi Comment gui=NONE guifg=#62c600 guibg=bg
76hi Identifier gui=bold guifg=LightBlue4 guibg=bg
77hi PreProc gui=NONE guifg=#ffa0a0 guibg=bg
78hi Type gui=NONE guifg=NavajoWhite guibg=bg
79hi Underlined gui=underline guifg=fg guibg=bg
80
81" vim: sw=2