aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorch1p <me@ch1p.com>2015-07-26 18:39:50 +0300
committerch1p <me@ch1p.com>2015-07-26 18:39:50 +0300
commit9ec1d220db744ca422ab4f67dd152ae622bcfd9b (patch)
tree6f5436779318444ed8117474e09533929b4e72ff
parentb8624609808c08b0a22ae0451c38cead5e4270f0 (diff)
add color scheme
-rw-r--r--vendetta.vim359
1 files changed, 359 insertions, 0 deletions
diff --git a/vendetta.vim b/vendetta.vim
new file mode 100644
index 0000000..15ec575
--- /dev/null
+++ b/vendetta.vim
@@ -0,0 +1,359 @@
+" Default GUI Colours
+let s:foreground = "eaeaea"
+let s:background = "000000"
+let s:selection = "424242"
+let s:line = "202020"
+let s:non_text = "666666"
+let s:comment = "888888"
+let s:red = "DE575C"
+let s:orange = "ED934C"
+let s:yellow = "EBE971"
+" prev green color: 4AC254
+let s:green = "00b853"
+let s:aqua = "37e7e9"
+let s:blue = "7FBFF0"
+let s:purple = "CF9FE6"
+let s:window = "4d5057"
+let s:tab_bg = "333333"
+let s:tab_fg = "f6f6f6"
+let s:linenr_bg = "202020"
+let s:linenr_fg = "777777"
+let s:statusline_bg = "cccccc"
+let s:statusline_fg = "222222"
+let s:cursor_bg = "555555"
+
+set background=dark
+hi clear
+syntax reset
+
+let g:colors_name = "vendetta"
+
+if has("gui_running") || &t_Co == 88 || &t_Co == 256
+ " Returns an approximate grey index for the given grey level
+ fun <SID>grey_number(x)
+ if &t_Co == 88
+ if a:x < 23
+ return 0
+ elseif a:x < 69
+ return 1
+ elseif a:x < 103
+ return 2
+ elseif a:x < 127
+ return 3
+ elseif a:x < 150
+ return 4
+ elseif a:x < 173
+ return 5
+ elseif a:x < 196
+ return 6
+ elseif a:x < 219
+ return 7
+ elseif a:x < 243
+ return 8
+ else
+ return 9
+ endif
+ else
+ if a:x < 14
+ return 0
+ else
+ let l:n = (a:x - 8) / 10
+ let l:m = (a:x - 8) % 10
+ if l:m < 5
+ return l:n
+ else
+ return l:n + 1
+ endif
+ endif
+ endif
+ endfun
+
+ " Returns the actual grey level represented by the grey index
+ fun <SID>grey_level(n)
+ if &t_Co == 88
+ if a:n == 0
+ return 0
+ elseif a:n == 1
+ return 46
+ elseif a:n == 2
+ return 92
+ elseif a:n == 3
+ return 115
+ elseif a:n == 4
+ return 139
+ elseif a:n == 5
+ return 162
+ elseif a:n == 6
+ return 185
+ elseif a:n == 7
+ return 208
+ elseif a:n == 8
+ return 231
+ else
+ return 255
+ endif
+ else
+ if a:n == 0
+ return 0
+ else
+ return 8 + (a:n * 10)
+ endif
+ endif
+ endfun
+
+ " Returns the palette index for the given grey index
+ fun <SID>grey_colour(n)
+ if &t_Co == 88
+ if a:n == 0
+ return 16
+ elseif a:n == 9
+ return 79
+ else
+ return 79 + a:n
+ endif
+ else
+ if a:n == 0
+ return 16
+ elseif a:n == 25
+ return 231
+ else
+ return 231 + a:n
+ endif
+ endif
+ endfun
+
+ " Returns an approximate colour index for the given colour level
+ fun <SID>rgb_number(x)
+ if &t_Co == 88
+ if a:x < 69
+ return 0
+ elseif a:x < 172
+ return 1
+ elseif a:x < 230
+ return 2
+ else
+ return 3
+ endif
+ else
+ if a:x < 75
+ return 0
+ else
+ let l:n = (a:x - 55) / 40
+ let l:m = (a:x - 55) % 40
+ if l:m < 20
+ return l:n
+ else
+ return l:n + 1
+ endif
+ endif
+ endif
+ endfun
+
+ " Returns the actual colour level for the given colour index
+ fun <SID>rgb_level(n)
+ if &t_Co == 88
+ if a:n == 0
+ return 0
+ elseif a:n == 1
+ return 139
+ elseif a:n == 2
+ return 205
+ else
+ return 255
+ endif
+ else
+ if a:n == 0
+ return 0
+ else
+ return 55 + (a:n * 40)
+ endif
+ endif
+ endfun
+
+ " Returns the palette index for the given R/G/B colour indices
+ fun <SID>rgb_colour(x, y, z)
+ if &t_Co == 88
+ return 16 + (a:x * 16) + (a:y * 4) + a:z
+ else
+ return 16 + (a:x * 36) + (a:y * 6) + a:z
+ endif
+ endfun
+
+ " Returns the palette index to approximate the given R/G/B colour levels
+ fun <SID>colour(r, g, b)
+ " Get the closest grey
+ let l:gx = <SID>grey_number(a:r)
+ let l:gy = <SID>grey_number(a:g)
+ let l:gz = <SID>grey_number(a:b)
+
+ " Get the closest colour
+ let l:x = <SID>rgb_number(a:r)
+ let l:y = <SID>rgb_number(a:g)
+ let l:z = <SID>rgb_number(a:b)
+
+ if l:gx == l:gy && l:gy == l:gz
+ " There are two possibilities
+ let l:dgr = <SID>grey_level(l:gx) - a:r
+ let l:dgg = <SID>grey_level(l:gy) - a:g
+ let l:dgb = <SID>grey_level(l:gz) - a:b
+ let l:dgrey = (l:dgr * l:dgr) + (l:dgg * l:dgg) + (l:dgb * l:dgb)
+ let l:dr = <SID>rgb_level(l:gx) - a:r
+ let l:dg = <SID>rgb_level(l:gy) - a:g
+ let l:db = <SID>rgb_level(l:gz) - a:b
+ let l:drgb = (l:dr * l:dr) + (l:dg * l:dg) + (l:db * l:db)
+ if l:dgrey < l:drgb
+ " Use the grey
+ return <SID>grey_colour(l:gx)
+ else
+ " Use the colour
+ return <SID>rgb_colour(l:x, l:y, l:z)
+ endif
+ else
+ " Only one possibility
+ return <SID>rgb_colour(l:x, l:y, l:z)
+ endif
+ endfun
+
+ " Returns the palette index to approximate the 'rrggbb' hex string
+ fun <SID>rgb(rgb)
+ let l:r = ("0x" . strpart(a:rgb, 0, 2)) + 0
+ let l:g = ("0x" . strpart(a:rgb, 2, 2)) + 0
+ let l:b = ("0x" . strpart(a:rgb, 4, 2)) + 0
+
+ return <SID>colour(l:r, l:g, l:b)
+ endfun
+
+ " Sets the highlighting for the given group
+ fun <SID>X(group, fg, bg, attr)
+ if a:fg != ""
+ exec "hi " . a:group . " guifg=#" . a:fg . " ctermfg=" . <SID>rgb(a:fg)
+ endif
+ if a:bg != ""
+ exec "hi " . a:group . " guibg=#" . a:bg . " ctermbg=" . <SID>rgb(a:bg)
+ endif
+ if a:attr != ""
+ exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr
+ endif
+ endfun
+
+ " Vim Highlighting
+ call <SID>X("Normal", s:foreground, s:background, "none")
+ call <SID>X("LineNr", s:linenr_fg, s:linenr_bg, "")
+ call <SID>X("NonText", s:non_text, "", "")
+ call <SID>X("SpecialKey", s:selection, "", "")
+ call <SID>X("Search", s:background, s:yellow, "")
+ call <SID>X("TabLine", s:tab_fg, s:tab_bg, "none")
+ call <SID>X("TabLineFill", s:tab_bg, s:foreground, "")
+ call <SID>X("TabLineSel", s:tab_fg, s:background, "")
+ call <SID>X("StatusLine", s:statusline_bg, s:statusline_fg, "")
+ call <SID>X("StatusLineNC", s:linenr_fg, s:linenr_bg, "none")
+ call <SID>X("VertSplit", s:linenr_bg, s:linenr_bg, "none")
+ call <SID>X("Visual", "", s:selection, "")
+ call <SID>X("Directory", s:blue, "", "")
+ "call <SID>X("ModeMsg", s:green, "", "")
+ "call <SID>X("MoreMsg", s:green, "", "")
+ "call <SID>X("Question", s:green, "", "")
+ call <SID>X("WarningMsg", s:red, "", "")
+ call <SID>X("MatchParen", "", s:selection, "")
+ call <SID>X("Folded", s:comment, s:background, "")
+ call <SID>X("FoldColumn", "", s:background, "")
+ "call <SID>X("Cursor", "NONE", s:non_text, "none")
+ hi CursorLine guibg=#202020
+ hi Cursor guifg=NONE guibg=#555555 gui=none
+ if version >= 700
+ call <SID>X("CursorLine", "", s:line, "none")
+ call <SID>X("CursorColumn", "", s:line, "none")
+ call <SID>X("PMenu", s:foreground, s:selection, "none")
+ call <SID>X("PMenuSel", s:foreground, s:selection, "reverse")
+ call <SID>X("SignColumn", "", s:background, "none")
+ end
+ if version >= 703
+ call <SID>X("ColorColumn", "", s:line, "none")
+ end
+
+ " Standard Highlighting
+ " TODO tes
+ call <SID>X("Comment", s:comment, "", "")
+ call <SID>X("Todo", s:red, s:background, "bold")
+ call <SID>X("Title", s:comment, "", "")
+ call <SID>X("Identifier", s:aqua, "", "none")
+ call <SID>X("Statement", s:yellow, "", "none")
+ call <SID>X("Conditional", s:blue, "", "")
+ call <SID>X("Repeat", s:yellow, "", "")
+ call <SID>X("Structure", s:yellow, "", "")
+ "call <SID>X("Function", s:blue,"","")
+ call <SID>X("Constant", s:orange, "", "")
+ call <SID>X("String", s:green, "", "")
+ call <SID>X("Special", s:blue, "", "")
+ call <SID>X("PreProc", s:purple, "", "")
+ call <SID>X("Operator", s:blue, "", "none")
+ call <SID>X("Type", s:blue, "", "none")
+ call <SID>X("Define", s:red, "", "none")
+ call <SID>X("Include", s:blue, "", "")
+ "call <SID>X("Ignore","666666","","")
+ call <SID>X("Number", s:orange, "" , "")
+
+ " Vim Highlighting
+ " return, if, elseif ... belongs to vimCommand :(
+ call <SID>X("vimCommand", s:red, "", "none")
+
+ " C Highlighting
+ call <SID>X("cType", s:blue, "", "")
+ call <SID>X("cStorageClass", s:yellow, "", "")
+ call <SID>X("cConditional", s:blue, "", "")
+ call <SID>X("cPreCondit", s:purple, "", "")
+ call <SID>X("cRepeat", s:yellow, "", "")
+ call <SID>X("cDefine", s:red, "", "")
+ call <SID>X("cInclude", s:red, "", "")
+
+ " PHP Highlighting
+ call <SID>X("phpVarSelector", s:yellow, "", "")
+ call <SID>X("phpKeyword", s:yellow, "", "")
+ call <SID>X("phpIdentifier", s:blue, "", "")
+ "call <SID>X("phpOperator", s:yellow,"","")
+ call <SID>X("phpRepeat", s:yellow, "", "")
+ call <SID>X("phpConditional", s:purple, "", "")
+ call <SID>X("phpStatement", s:yellow, "", "")
+ call <SID>X("phpMemberSelector", s:foreground, "", "")
+ call <SID>X("phpStringSingle", s:orange, "", "")
+ call <SID>X("phpDefine", s:red, "", "")
+ call <SID>X("phpStorageClass", s:blue, "", "")
+ call <SID>X("phpStructure", s:blue, "", "")
+
+ " Python Highlighting
+ call <SID>X("pythonConditional", s:blue, "", "")
+ call <SID>X("pythonRepeat", s:yellow, "", "")
+ call <SID>X("pythonException", s:blue, "", "")
+ call <SID>X("pythonStatement", s:yellow, "", "")
+ call <SID>X("pythonImport", s:red, "", "")
+
+ " CoffeeScript Highlighting
+ call <SID>X("coffeeConditional", s:blue, "", "")
+
+ " JavaScript Highlighting
+ call <SID>X("javaScriptBraces", s:foreground, "", "")
+ call <SID>X("javaScriptFunction", s:red, "", "")
+ call <SID>X("javaScriptNumber", s:orange, "", "")
+ call <SID>X("javaScriptGlobal", s:yellow, "", "")
+
+ " HTML Highlighting
+ "call <SID>X("htmlTag", s:red,"","")
+ "call <SID>X("htmlTagName", s:red,"","")
+ "call <SID>X("htmlArg", s:red,"","")
+ "call <SID>X("htmlScriptTag", s:red,"","")
+
+ " Diff Highlighting
+ call <SID>X("diffAdded", s:green, "", "")
+ call <SID>X("diffRemoved", s:red, "", "")
+
+ " Delete Functions
+ delf <SID>X
+ delf <SID>rgb
+ delf <SID>colour
+ delf <SID>rgb_colour
+ delf <SID>rgb_level
+ delf <SID>rgb_number
+ delf <SID>grey_colour
+ delf <SID>grey_level
+ delf <SID>grey_number
+endif