微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

vim-color

filename : ims.vim
path: vim/vim81/colors

" Vim color file
" Maintainer:   Shian Lee 
" Last Change:  2014 Mar 6 (for vim 7.4)
" Remark:   "industry" stands for ‘industrial‘ color scheme. In industrial
"       HMI (Human-Machine-Interface) programming,using a standard color
"               scheme is mandatory in many cases (in traffic-lights for example): 
"               LIGHT_RED is        ‘Warning‘ 
"               LIGHT_YELLOW is     ‘Attention‘ 
"               LIGHT_GREEN is      ‘normal‘ 
"               LIGHT_magenta is    ‘Warning-Attention‘ (light RED-YELLOW)
"               LIGHT_CYAN is       ‘Attention-normal‘  (light YELLOW-GREEN).
"               BLACK is        Dark-High-Contrast Background for maximum safety.
"               BLUE is         Shade of BLACK (not supposed to get attention).
"
"               Industrial color scheme is by nature clear,safe and productive. 
"               Yet,depends on the file type‘s Syntax,it might appear incorrect. 

" Reset to dark background,then reset everything to defaults:
set background=dark
highlight clear
if exists("Syntax_on")
    Syntax reset
endif

let colors_name = "industry"

" First set normal to regular white on black text colors:
hi normal ctermfg=LightGray ctermbg=Black guifg=#dddddd guibg=Black

" Syntax highlighting (other color-groups using default,see :help group-name):
hi Comment    cterm=NONE ctermfg=DarkCyan       gui=NONE guifg=#00aaaa       
hi Constant   cterm=NONE ctermfg=LightCyan      gui=NONE guifg=#00ffff      
hi Identifier cterm=NONE ctermfg=Lightmagenta   gui=NONE guifg=#ff00ff   
hi Function   cterm=NONE ctermfg=LightGreen     gui=NONE guifg=#00ff00      
hi Statement  cterm=NONE ctermfg=White          gui=bold guifg=#ffffff          
hi PreProc    cterm=NONE ctermfg=Yellow     gui=NONE guifg=#ffff00  
hi Type       cterm=NONE ctermfg=LightGreen gui=bold guifg=#00ff00      
hi Special    cterm=NONE ctermfg=LightRed       gui=NONE guifg=#ff0000      
hi Delimiter  cterm=NONE ctermfg=Yellow     gui=NONE guifg=#ffff00  


hi StatusLine   guifg=blue guibg=darkgray gui=none      ctermfg=green ctermbg=black term=none cterm=none
hi StatusLineNC guifg=black guibg=darkgray gui=none     ctermfg=black  ctermbg=black term=none cterm=none
hi VertSplit    guifg=black guibg=LightRed gui=none     ctermfg=green ctermbg=LightRed term=none cterm=none

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐