Created
September 24, 2010 20:42
-
-
Save k0001/596004 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" LAS VIm color theme | |
" (Somehow) by Renzo Carbonara <[email protected]>, 2010 | |
" | |
" Based on the random theme generated by Inspiration at Sweyla | |
" http://inspiration.sweyla.com/code/seed/966607/ | |
" which seems to be under the "Public Domain", whatever that means. | |
" | |
" It's named LAS after Luis Alberto Spinetta, who once said: | |
" 'Vemos todos los colores, sin saber lo que es hoy un color' | |
" which translates to: | |
" 'We see every color, without knowing what a color is today' | |
" | |
set background=dark | |
hi clear | |
if exists("syntax_on") | |
syntax reset | |
endif | |
" Set environment to 256 colours | |
set t_Co=256 | |
let colors_name = "las" | |
if version >= 700 | |
hi CursorLine guibg=#14000D ctermbg=232 | |
hi CursorColumn guibg=#14000D ctermbg=232 | |
hi MatchParen guifg=#22CE07 guibg=#14000D gui=bold ctermfg=40 ctermbg=232 cterm=bold | |
hi Pmenu guifg=#FFFFFF guibg=#323232 ctermfg=255 ctermbg=236 | |
hi PmenuSel guifg=#FFFFFF guibg=#FFC3A2 ctermfg=255 ctermbg=217 | |
endif | |
" Background and menu colors | |
hi Cursor guifg=NONE guibg=#FFFFFF ctermbg=255 gui=none | |
"hi Normal guifg=#FFFFFF guibg=#14000D gui=none ctermfg=255 ctermbg=232 cterm=none | |
hi NonText guifg=#FFFFFF guibg=#230F1C gui=none ctermfg=255 ctermbg=234 cterm=none | |
hi LineNr guifg=#FFFFFF guibg=#2D1926 gui=none ctermfg=255 ctermbg=235 cterm=none | |
hi StatusLine guifg=#FFFFFF guibg=#43272A gui=italic ctermfg=255 ctermbg=235 cterm=italic | |
hi StatusLineNC guifg=#FFFFFF guibg=#3C2835 gui=none ctermfg=255 ctermbg=236 cterm=none | |
hi VertSplit guifg=#FFFFFF guibg=#2D1926 gui=none ctermfg=255 ctermbg=235 cterm=none | |
hi Folded guifg=#FFFFFF guibg=#14000D gui=none ctermfg=255 ctermbg=232 cterm=none | |
hi Title guifg=#FFC3A2 guibg=NONE gui=bold ctermfg=217 ctermbg=NONE cterm=bold | |
hi Visual guifg=#FF9F87 guibg=#323232 gui=none ctermfg=216 ctermbg=236 cterm=none | |
hi SpecialKey guifg=#AFBA50 guibg=#230F1C gui=none ctermfg=143 ctermbg=234 cterm=none | |
" Syntax highlighting | |
hi Comment guifg=#FFC3A2 gui=none ctermfg=217 cterm=none | |
hi Constant guifg=#AFBA50 gui=none ctermfg=143 cterm=none | |
hi Number guifg=#AFBA50 gui=none ctermfg=143 cterm=none | |
hi Identifier guifg=#D27D1C gui=none ctermfg=172 cterm=none | |
hi Statement guifg=#22CE07 gui=none ctermfg=40 cterm=none | |
hi Function guifg=#77A890 gui=none ctermfg=108 cterm=none | |
hi Special guifg=#97E5BB gui=none ctermfg=115 cterm=none | |
hi PreProc guifg=#97E5BB gui=none ctermfg=115 cterm=none | |
hi Keyword guifg=#22CE07 gui=none ctermfg=40 cterm=none | |
hi String guifg=#FF9F87 gui=none ctermfg=216 cterm=none | |
hi Type guifg=#FF7E55 gui=none ctermfg=209 cterm=none | |
hi pythonBuiltin guifg=#D27D1C gui=none ctermfg=172 cterm=none |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment