Replace theme file
This commit is contained in:
parent
cc27cf15b5
commit
82c93113e7
|
@ -1,27 +1,28 @@
|
||||||
" Tomorrow Night Bright - Full Colour and 256 Colour
|
" Tomorrow - Full Colour and 256 Colour
|
||||||
" http://chriskempson.com
|
" http://chriskempson.com
|
||||||
"
|
"
|
||||||
" Hex colour conversion functions borrowed from the theme "Desert256""
|
" Hex colour conversion functions borrowed from the theme "Desert256""
|
||||||
|
|
||||||
" Default GUI Colours
|
" Default GUI Colours
|
||||||
let s:foreground = "eaeaea"
|
let s:foreground = "4d4d4c"
|
||||||
let s:background = "0b0a16"
|
let s:background = "ffffff"
|
||||||
let s:selection = "424242"
|
let s:selection = "d6d6d6"
|
||||||
let s:line = "2a2a2a"
|
let s:line = "efefef"
|
||||||
let s:comment = "969896"
|
let s:comment = "8e908c"
|
||||||
let s:red = "d54e53"
|
let s:red = "c82829"
|
||||||
let s:orange = "e78c45"
|
let s:orange = "f5871f"
|
||||||
let s:yellow = "e7c547"
|
let s:yellow = "eab700"
|
||||||
let s:green = "b9ca4a"
|
let s:green = "718c00"
|
||||||
let s:aqua = "70c0b1"
|
let s:aqua = "3e999f"
|
||||||
let s:blue = "7aa6da"
|
let s:blue = "4271ae"
|
||||||
let s:purple = "c397d8"
|
let s:purple = "8959a8"
|
||||||
let s:window = "4d5057"
|
let s:window = "efefef"
|
||||||
|
|
||||||
|
set background=light
|
||||||
hi clear
|
hi clear
|
||||||
syntax reset
|
syntax reset
|
||||||
|
|
||||||
let g:colors_name = "Tomorrow-Night-Bright"
|
let g:colors_name = "Tomorrow"
|
||||||
|
|
||||||
if has("gui_running") || &t_Co == 88 || &t_Co == 256
|
if has("gui_running") || &t_Co == 88 || &t_Co == 256
|
||||||
" Returns an approximate grey index for the given grey level
|
" Returns an approximate grey index for the given grey level
|
||||||
|
@ -232,11 +233,11 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
|
||||||
endfun
|
endfun
|
||||||
|
|
||||||
" Vim Highlighting
|
" Vim Highlighting
|
||||||
call <SID>X("Normal", s:foreground, s:background, "")
|
call <SID>X("Normal", s:foreground, "", "")
|
||||||
call <SID>X("LineNr", s:selection, "", "")
|
highlight LineNr term=bold cterm=NONE ctermfg=DarkGrey ctermbg=NONE gui=NONE guifg=DarkGrey guibg=NONE
|
||||||
call <SID>X("NonText", s:selection, "", "")
|
call <SID>X("NonText", s:selection, "", "")
|
||||||
call <SID>X("SpecialKey", s:selection, "", "")
|
call <SID>X("SpecialKey", s:selection, "", "")
|
||||||
call <SID>X("Search", s:background, s:yellow, "")
|
call <SID>X("Search", s:foreground, s:yellow, "")
|
||||||
call <SID>X("TabLine", s:window, s:foreground, "reverse")
|
call <SID>X("TabLine", s:window, s:foreground, "reverse")
|
||||||
call <SID>X("TabLineFill", s:window, s:foreground, "reverse")
|
call <SID>X("TabLineFill", s:window, s:foreground, "reverse")
|
||||||
call <SID>X("StatusLine", s:window, s:yellow, "reverse")
|
call <SID>X("StatusLine", s:window, s:yellow, "reverse")
|
||||||
|
@ -364,12 +365,6 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
|
||||||
call <SID>X("htmlArg", s:red, "", "")
|
call <SID>X("htmlArg", s:red, "", "")
|
||||||
call <SID>X("htmlScriptTag", s:red, "", "")
|
call <SID>X("htmlScriptTag", s:red, "", "")
|
||||||
|
|
||||||
" Diff Highlighting
|
|
||||||
call <SID>X("diffAdd", "", "4c4e39", "")
|
|
||||||
call <SID>X("diffDelete", s:background, s:red, "")
|
|
||||||
call <SID>X("diffChange", "", "2B5B77", "")
|
|
||||||
call <SID>X("diffText", s:line, s:blue, "")
|
|
||||||
|
|
||||||
" ShowMarks Highlighting
|
" ShowMarks Highlighting
|
||||||
call <SID>X("ShowMarksHLl", s:orange, s:background, "none")
|
call <SID>X("ShowMarksHLl", s:orange, s:background, "none")
|
||||||
call <SID>X("ShowMarksHLo", s:purple, s:background, "none")
|
call <SID>X("ShowMarksHLo", s:purple, s:background, "none")
|
||||||
|
@ -485,6 +480,3 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
|
||||||
delf <SID>grey_level
|
delf <SID>grey_level
|
||||||
delf <SID>grey_number
|
delf <SID>grey_number
|
||||||
endif
|
endif
|
||||||
|
|
||||||
set background=dark
|
|
||||||
highlight NORMAL guibg=NONE
|
|
Loading…
Reference in New Issue