Compare commits
46 Commits
Author | SHA1 | Date |
---|---|---|
|
5cec61e2c4 | |
|
c5aea11aa1 | |
|
727fee9716 | |
|
79148da18a | |
|
c699ca10ed | |
|
0aa4e5c973 | |
|
cf56624d12 | |
|
1a4fc46953 | |
|
1652c648b6 | |
|
012ff0065e | |
|
37203c8514 | |
|
a2ca1160c4 | |
|
1abca55653 | |
|
a727ab3ba7 | |
|
d2ddb5d7e6 | |
|
e42c3a0ae8 | |
|
1bbfcbc3a5 | |
|
338b319da0 | |
|
69e8fefce0 | |
|
72e31b601f | |
|
d2e346ec31 | |
|
5c2ac6b043 | |
|
63c9e2f75a | |
|
5dfdefbe08 | |
|
baf7118427 | |
|
f774dedce0 | |
|
f9e5205319 | |
|
255a6086aa | |
|
37afc9f148 | |
|
9a952cee86 | |
|
95c0801faa | |
|
d57db9f7ff | |
|
fcc51fc158 | |
|
95a5adbbbb | |
|
f6eafca9c9 | |
|
c9e63f8a73 | |
|
79936a4434 | |
|
92ec234dd0 | |
|
bb13c2c293 | |
|
adb621e3d1 | |
|
8255162005 | |
|
ed44e2a6b0 | |
|
1c10d0da04 | |
|
fa6e1a65c1 | |
|
00ffabcecc | |
|
0a1296cc93 |
File diff suppressed because it is too large
Load Diff
74
README.md
74
README.md
|
@ -3,27 +3,42 @@
|
|||
Spacegray is a colorscheme for Vim loosely modeled after
|
||||
the [spacegray](https://github.com/zdne/spacegray-xcode) theme for Xcode.
|
||||
|
||||
## Options
|
||||
|
||||
You can tweak Spacegray by enabling the following disabled options:
|
||||
|
||||
1. Underlined Search: Underline search text instead of using highlight color.
|
||||
Put the following in your `~/.vimrc` to enable it:
|
||||
|
||||
> `let g:spacegray_underline_search = 1`
|
||||
|
||||
2. Use Italics: Use italics when appropriate, e.g. for comments. (_note_:
|
||||
terminal must support italics). Put the following in your `~/.vimrc` to
|
||||
enable it:
|
||||
|
||||
> `let g:spacegray_use_italics = 1`
|
||||
|
||||
3. Use lower contrast: Use a low contrast variant of Spacegray. Put the
|
||||
following in your `~/.vimrc` to enable it:
|
||||
|
||||
> `let g:spacegray_low_contrast = 1`
|
||||
|
||||
## Screenshots
|
||||
|
||||
Here are a few screenshots of Spacegray:
|
||||
(Font used: Fira Mono 12pt)
|
||||
### Syntax Groups
|
||||

|
||||
|
||||
### JavaScript (GUI Vim)
|
||||

|
||||
### Spacegray Low Contrast
|
||||

|
||||
|
||||
### Vim (GUI Vim)
|
||||

|
||||
|
||||
### Ruby (Terminal Vim)
|
||||

|
||||
### Spacegray Dark
|
||||

|
||||
|
||||
## Installation
|
||||
|
||||
If you don't have a preferred installation method, I recommend installing
|
||||
[pathogen.vim](https://github.com/tpope/vim-pathogen), and then simply copy and
|
||||
paste:
|
||||
If you use Vim 8 or better, simply copy and paste:
|
||||
|
||||
cd ~/.vim/bundle && git clone git://github.com/ajh17/Spacegray.vim.git
|
||||
git clone https://git.sr.ht/~ackyshake/spacegray.vim ~/.vim/pack/vendor/start/Spacegray
|
||||
|
||||
Then in your ~/.vimrc, add this line:
|
||||
|
||||
|
@ -36,6 +51,11 @@ with 256 color support. Most these days are. Ensure that the default TERM
|
|||
contains the string `256color`. An example would be `xterm-256color` or
|
||||
if using tmux or screen, `screen-256color`.
|
||||
|
||||
NOTE: If you use Vim 7.4.1778 or higher, you can now use Spacegray's GUI colors
|
||||
inside terminal Vim as long as your terminal supports true colors (24-bit
|
||||
colors). To enable this, put `:set termguicolors` and ignore the rest of the
|
||||
terminal color sections of this document.
|
||||
|
||||
### Terminal Color Palette
|
||||
|
||||
Spacegray will look good in a dark terminal colorscheme, but if you use
|
||||
|
@ -46,14 +66,30 @@ Spacegray's color palette, it will look beautiful.
|
|||
On OS X, colorschemes for iTerm2 and Terminal.app are provided with the download.
|
||||
Simply double click to install.
|
||||
|
||||
Spacegray.terminator is also provided for Terminator and can be installed by
|
||||
### Terminator
|
||||
|
||||
Spacegray.terminator is provided for Terminator and can be installed by
|
||||
copying to `~/.config/terminator/config` on Linux or
|
||||
`$XDG_CONFIG_HOME/terminator/config` if you're running OS X.
|
||||
|
||||
For gnome-terminal on Linux, simply move the `%gconf.xml`, provided with the
|
||||
download, to the `~/.gconf/apps/gnome-terminal/profiles/Default` folder. You
|
||||
might have to restart gconfd for changes to take effect ( Use `gconftool
|
||||
--shutdown`, move the file, then use `gconftool-2 --spawn`)
|
||||
### Gnome Terminal
|
||||
|
||||
For gnome terminal, you can configure the terminal with the following set of
|
||||
gsettings commands:
|
||||
|
||||
profile_key=$(gsettings get org.gnome.Terminal.ProfilesList default | sed -e "s/'//g" | tr -d "\n")
|
||||
gsettings set org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:$profile_key/ visible-name "'Spacegray'"
|
||||
gsettings set org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:$profile_key/ background-color "'rgb(17,19,20)'"
|
||||
gsettings set org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:$profile_key/ foreground-color "'rgb(183,187,183)'"
|
||||
gsettings set org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:$profile_key/ use-theme-colors "false"
|
||||
gsettings set org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:$profile_key/ palette "['rgb(44,47,51)', 'rgb(176,76,80)', 'rgb(145,150,82)', 'rgb(226,153,92)', 'rgb(102,137,157)', 'rgb(141,100,148)', 'rgb(82,124,119)', 'rgb(96,99,96)', 'rgb(75,80,86)', 'rgb(176,76,80)', 'rgb(148,152,91)', 'rgb(226,153,92)', 'rgb(102,137,157)', 'rgb(141,100,148)', 'rgb(82,124,119)', 'rgb(221,227,220)']"
|
||||
|
||||
gnome-terminal should then immediately reflect Spacegray colors.
|
||||
|
||||
### Xcode
|
||||
|
||||
Use Xcode? Try out
|
||||
[Spacegray-Xcode](https://git.sr.ht/~ackyshake/spacegray-xcode).
|
||||
|
||||
### Xresources
|
||||
|
||||
|
@ -86,5 +122,7 @@ For Linux/BSD users, here is a sample ~/.Xresources:
|
|||
*color7: #606360
|
||||
*color15: #DDE3DC
|
||||
|
||||
For lower contrast Spacegray, use a background color of #242424
|
||||
|
||||
# License
|
||||
Copyright (c) Akshay Hegde. Distributed under the same terms as Vim itself. See `:help license`
|
||||
|
|
|
@ -1,38 +1,64 @@
|
|||
" SpaceGray.vim -- Vim colorscheme.
|
||||
" Maintainer: Akshay Hegde (github.com/ajh17)
|
||||
" Version: 1.4
|
||||
" A colorscheme loosely modeled after the spacegray theme for Xcode.
|
||||
" This colorscheme is 256color and up only.
|
||||
" Spacegray.vim -- Vim colorscheme
|
||||
" Maintainer: Akshay Hegde (https://git.sr.ht/~ackyshake/)
|
||||
" Version: 1.5
|
||||
" Description: A colorscheme loosely modeled after the spacegray theme for Xcode
|
||||
" Note: This colorscheme is 256color and up only
|
||||
" Last Change: 2020 Dec 23
|
||||
|
||||
" Setup {{{1
|
||||
hi clear
|
||||
|
||||
if has('gui_running') && &background !=# 'dark'
|
||||
set background=dark
|
||||
endif
|
||||
|
||||
if exists('syntax_on')
|
||||
syntax reset
|
||||
endif
|
||||
|
||||
set background=dark
|
||||
let colors_name = 'spacegray'
|
||||
" Options {{{1
|
||||
if !exists('g:spacegray_underline_search')
|
||||
let g:spacegray_underline_search = 0
|
||||
endif
|
||||
|
||||
if !exists('g:spacegray_use_italics')
|
||||
let g:spacegray_use_italics = 0
|
||||
endif
|
||||
|
||||
if !exists('g:spacegray_low_contrast')
|
||||
let g:spacegray_low_contrast = 0
|
||||
endif
|
||||
|
||||
let g:colors_name = 'spacegray'
|
||||
|
||||
" Colorscheme definitions {{{1
|
||||
hi Normal ctermbg=233 ctermfg=250 guibg=#141617 guifg=#B3B8C4 cterm=NONE gui=NONE
|
||||
if g:spacegray_low_contrast
|
||||
hi Normal ctermbg=235 ctermfg=250 guibg=#242424 guifg=#B3B8C4 cterm=NONE gui=NONE
|
||||
else
|
||||
hi Normal ctermbg=233 ctermfg=250 guibg=#111314 guifg=#B3B8C4 cterm=NONE gui=NONE
|
||||
endif
|
||||
|
||||
if g:spacegray_use_italics
|
||||
hi Comment ctermbg=NONE ctermfg=242 guibg=NONE guifg=#657785 cterm=italic gui=italic
|
||||
else
|
||||
hi Comment ctermbg=NONE ctermfg=242 guibg=NONE guifg=#657785 cterm=NONE gui=NONE
|
||||
endif
|
||||
|
||||
hi Conceal ctermbg=NONE ctermfg=250 guibg=NONE guifg=#B3B8C4 cterm=NONE gui=NONE
|
||||
|
||||
hi Comment ctermbg=NONE ctermfg=59 guibg=NONE guifg=#515F6A cterm=NONE gui=NONE
|
||||
hi NonText ctermbg=NONE ctermfg=8 guibg=NONE guifg=#3E4853 cterm=NONE gui=NONE
|
||||
hi Title ctermbg=NONE ctermfg=231 guibg=NONE guifg=#FFFFFF cterm=NONE gui=NONE
|
||||
|
||||
hi Title ctermbg=NONE ctermfg=250 guibg=NONE guifg=#B3B8C4 cterm=bold gui=bold
|
||||
hi Constant ctermbg=NONE ctermfg=130 guibg=NONE guifg=#C5735E cterm=NONE gui=NONE
|
||||
hi Function ctermbg=NONE ctermfg=9 guibg=NONE guifg=#CC6666 cterm=NONE gui=NONE
|
||||
hi Identifier ctermbg=NONE ctermfg=179 guibg=NONE guifg=#E5C078 cterm=NONE gui=NONE
|
||||
hi PreProc ctermbg=NONE ctermfg=109 guibg=NONE guifg=#85A7A5 cterm=NONE gui=NONE
|
||||
hi Special ctermbg=NONE ctermfg=103 guibg=NONE guifg=#7D8FA3 cterm=NONE gui=NONE
|
||||
hi SpecialKey ctermbg=NONE ctermfg=59 guibg=NONE guifg=#4C5966 cterm=NONE gui=NONE
|
||||
hi SpecialComment ctermbg=NONE ctermfg=242 guibg=NONE guifg=#657785 cterm=bold gui=bold
|
||||
hi Statement ctermbg=NONE ctermfg=13 guibg=NONE guifg=#A57A9E cterm=NONE gui=NONE
|
||||
hi String ctermbg=NONE ctermfg=107 guibg=NONE guifg=#95B47B cterm=NONE gui=NONE
|
||||
hi Type ctermbg=NONE ctermfg=179 guibg=NONE guifg=#E5C078 cterm=NONE gui=NONE
|
||||
|
||||
hi Cursor ctermbg=NONE ctermfg=NONE guibg=#6C6C6C guifg=NONE cterm=NONE gui=NONE
|
||||
hi Cursor ctermbg=fg ctermfg=bg guibg=fg guifg=bg cterm=NONE gui=NONE
|
||||
hi CursorColumn ctermbg=0 ctermfg=NONE guibg=#303030 guifg=NONE cterm=NONE gui=NONE
|
||||
hi CursorLine ctermbg=0 ctermfg=NONE guibg=#303030 guifg=NONE cterm=NONE gui=NONE
|
||||
hi ColorColumn ctermbg=235 ctermfg=NONE guibg=#303537 guifg=NONE cterm=NONE gui=NONE
|
||||
|
@ -54,7 +80,7 @@ hi DiffText ctermbg=60 ctermfg=251 guibg=#5F5F87 guifg=#D0D0D0 cte
|
|||
hi helpLeadBlank ctermbg=NONE ctermfg=NONE guibg=NONE guifg=NONE cterm=NONE gui=NONE
|
||||
hi helpNormal ctermbg=NONE ctermfg=NONE guibg=NONE guifg=NONE cterm=NONE gui=NONE
|
||||
|
||||
hi LineNr ctermbg=NONE ctermfg=8 guibg=#242627 guifg=#3E4853 cterm=NONE gui=NONE
|
||||
hi LineNr ctermbg=NONE ctermfg=8 guibg=#111314 guifg=#3E4853 cterm=NONE gui=NONE
|
||||
hi CursorLineNr ctermbg=NONE ctermfg=243 guibg=NONE guifg=#808080 cterm=NONE gui=NONE
|
||||
|
||||
hi Pmenu ctermbg=233 ctermfg=137 guibg=#171717 guifg=#E8A973 cterm=none gui=NONE
|
||||
|
@ -64,25 +90,53 @@ hi PmenuThumb ctermbg=235 ctermfg=137 guibg=NONE guifg=#171717 cte
|
|||
|
||||
hi WildMenu ctermbg=110 ctermfg=235 guibg=#8FAFD7 guifg=#141617 cterm=bold gui=bold
|
||||
|
||||
hi StatusLine ctermbg=235 ctermfg=249 guibg=#303537 guifg=#B3B8C4 cterm=NONE gui=NONE
|
||||
hi StatusLineNC ctermbg=232 ctermfg=239 guibg=#1C1F20 guifg=#7C7F88 cterm=NONE gui=italic
|
||||
if g:spacegray_low_contrast
|
||||
hi StatusLine ctermbg=236 ctermfg=249 guibg=#303537 guifg=#B3B8C4 cterm=NONE gui=NONE
|
||||
hi StatusLineTerm ctermbg=236 ctermfg=249 guibg=#303537 guifg=#B3B8C4 cterm=NONE gui=NONE
|
||||
hi TablineSel ctermbg=236 ctermfg=249 guibg=#303537 guifg=#B3B8C4 cterm=NONE gui=NONE
|
||||
hi TablineFill ctermbg=236 ctermfg=249 guibg=#303537 guifg=#B3B8C4 cterm=NONE gui=NONE
|
||||
if g:spacegray_use_italics
|
||||
hi StatusLineNC ctermbg=232 ctermfg=239 guibg=#1C1F20 guifg=#7C7F88 cterm=italic gui=italic
|
||||
hi StatusLineTermNC ctermbg=232 ctermfg=239 guibg=#1C1F20 guifg=#7C7F88 cterm=italic gui=italic
|
||||
hi Tabline ctermbg=232 ctermfg=239 guibg=#1C1F20 guifg=#7C7F88 cterm=italic gui=italic
|
||||
else
|
||||
hi StatusLineNC ctermbg=232 ctermfg=239 guibg=#1C1F20 guifg=#7C7F88 cterm=NONE gui=NONE
|
||||
hi StatusLineTermNC ctermbg=232 ctermfg=239 guibg=#1C1F20 guifg=#7C7F88 cterm=NONE gui=NONE
|
||||
hi Tabline ctermbg=232 ctermfg=239 guibg=#1C1F20 guifg=#7C7F88 cterm=NONE gui=NONE
|
||||
endif
|
||||
else
|
||||
hi StatusLine ctermbg=235 ctermfg=249 guibg=#303537 guifg=#B3B8C4 cterm=NONE gui=NONE
|
||||
hi StatusLineTerm ctermbg=235 ctermfg=249 guibg=#303537 guifg=#B3B8C4 cterm=NONE gui=NONE
|
||||
hi TablineSel ctermbg=235 ctermfg=249 guibg=#303537 guifg=#B3B8C4 cterm=NONE gui=NONE
|
||||
hi TablineFill ctermbg=235 ctermfg=249 guibg=#303537 guifg=#B3B8C4 cterm=NONE gui=NONE
|
||||
if g:spacegray_use_italics
|
||||
hi StatusLineNC ctermbg=232 ctermfg=239 guibg=#1C1F20 guifg=#7C7F88 cterm=italic gui=italic
|
||||
hi StatusLineTermNC ctermbg=232 ctermfg=239 guibg=#1C1F20 guifg=#7C7F88 cterm=italic gui=italic
|
||||
hi Tabline ctermbg=232 ctermfg=239 guibg=#1C1F20 guifg=#7C7F88 cterm=italic gui=italic
|
||||
else
|
||||
hi StatusLineNC ctermbg=232 ctermfg=239 guibg=#1C1F20 guifg=#7C7F88 cterm=NONE gui=NONE
|
||||
hi StatusLineTermNC ctermbg=232 ctermfg=239 guibg=#1C1F20 guifg=#7C7F88 cterm=NONE gui=NONE
|
||||
hi Tabline ctermbg=232 ctermfg=239 guibg=#1C1F20 guifg=#7C7F88 cterm=NONE gui=NONE
|
||||
endif
|
||||
endif
|
||||
|
||||
hi Underlined ctermbg=NONE ctermfg=66 guibg=NONE guifg=#5F8787 cterm=NONE gui=NONE
|
||||
hi Ignore ctermbg=NONE ctermfg=250 guibg=NONE guifg=#BCBCBC cterm=NONE gui=NONE
|
||||
|
||||
hi Visual ctermbg=236 ctermfg=NONE guibg=#292C2E guifg=NONE cterm=NONE gui=NONE
|
||||
hi Visual ctermbg=233 ctermfg=4 guibg=#111314 guifg=#6E9CAF cterm=reverse gui=reverse
|
||||
hi VisualNOS ctermbg=8 ctermfg=NONE guibg=NONE guifg=NONE cterm=bold gui=bold
|
||||
|
||||
hi FoldColumn ctermbg=NONE ctermfg=242 guibg=#1C1C1C guifg=#6C6C6C cterm=NONE gui=NONE
|
||||
hi Folded ctermbg=NONE ctermfg=242 guibg=#1C1C1C guifg=#6C6C6C cterm=NONE gui=NONE
|
||||
hi VertSplit ctermbg=238 ctermfg=238 guibg=#444444 guifg=#444444 cterm=NONE gui=NONE
|
||||
|
||||
hi VertSplit ctermbg=232 ctermfg=232 guibg=#1C1F20 guifg=#1C1F20 cterm=NONE gui=NONE
|
||||
|
||||
hi IncSearch ctermbg=9 ctermfg=0 guibg=#AF5F5F guifg=#141617 cterm=NONE gui=NONE
|
||||
hi Search ctermbg=2 ctermfg=232 guibg=#919652 guifg=#141617 cterm=NONE gui=NONE
|
||||
|
||||
hi TabLine ctermbg=232 ctermfg=249 guibg=#141617 guifg=#B3B8C4 cterm=NONE gui=NONE
|
||||
hi TabLineFill ctermbg=235 ctermfg=239 guibg=#303537 guifg=#303537 cterm=NONE gui=NONE
|
||||
hi TabLineSel ctermbg=145 ctermfg=0 guibg=#7D8FA3 guifg=#111314 cterm=NONE gui=NONE
|
||||
if g:spacegray_underline_search
|
||||
hi Search ctermbg=NONE ctermfg=NONE guibg=NONE guifg=NONE cterm=underline,bold gui=underline,bold
|
||||
else
|
||||
hi Search ctermbg=2 ctermfg=232 guibg=#919652 guifg=#141617 cterm=NONE gui=NONE
|
||||
endif
|
||||
|
||||
hi Directory ctermbg=NONE ctermfg=24 guibg=NONE guifg=#5FAFAF cterm=NONE gui=NONE
|
||||
hi MatchParen ctermbg=NONE ctermfg=11 guibg=NONE guifg=#E5C078 cterm=bold gui=bold
|
||||
|
@ -92,52 +146,72 @@ hi SpellRare ctermbg=53 ctermfg=13 guibg=#5F005F guifg=#B294BB cte
|
|||
hi SpellCap ctermbg=17 ctermfg=12 guibg=#00005F guifg=#81A2BE cterm=NONE gui=NONE
|
||||
hi SpellLocal ctermbg=24 ctermfg=14 guibg=#005F5F guifg=#8ABEB7 cterm=NONE gui=NONE
|
||||
|
||||
" Highlight Links {{{1
|
||||
" Most of the links are mercilessly stolen from romainl's amazing Apprentice
|
||||
" theme. (https://github.com/romainl/Apprentice)
|
||||
hi link Boolean Constant
|
||||
hi link Character Constant
|
||||
hi link Number Constant
|
||||
" Highlights {{{1
|
||||
highlight link Boolean Constant
|
||||
highlight link Character Constant
|
||||
highlight link Number Constant
|
||||
|
||||
hi link Float Number
|
||||
highlight link Float Number
|
||||
|
||||
hi link Define Preproc
|
||||
hi link Include Preproc
|
||||
hi link Macro Preproc
|
||||
hi link PreCondit PreProc
|
||||
highlight link Define Preproc
|
||||
highlight link Include Preproc
|
||||
highlight link Macro Preproc
|
||||
highlight link PreCondit PreProc
|
||||
|
||||
hi link Conditional Statement
|
||||
hi link Exception Statement
|
||||
hi link HelpCommand Statement
|
||||
hi link HelpExample Statement
|
||||
hi link Keyword Statement
|
||||
hi link Label Statement
|
||||
hi link Operator Statement
|
||||
hi link Repeat Statement
|
||||
highlight link Conditional Statement
|
||||
highlight link Exception Statement
|
||||
highlight link HelpCommand Statement
|
||||
highlight link HelpExample Statement
|
||||
highlight link Keyword Statement
|
||||
highlight link Label Statement
|
||||
highlight link Operator Statement
|
||||
highlight link Repeat Statement
|
||||
|
||||
hi link StorageClass Type
|
||||
hi link Structure Type
|
||||
hi link Typedef Type
|
||||
highlight link StorageClass Type
|
||||
highlight link Structure Type
|
||||
highlight link Typedef Type
|
||||
|
||||
hi link Debug Special
|
||||
hi link Delimiter Special
|
||||
hi link SpecialChar Special
|
||||
hi link SpecialComment Special
|
||||
hi link Tag Special
|
||||
highlight link Debug Special
|
||||
highlight link Delimiter Special
|
||||
highlight link SpecialChar Special
|
||||
highlight link Tag Special
|
||||
|
||||
highlight link Terminal Normal
|
||||
|
||||
" HTML
|
||||
hi link htmlEndTag htmlTagName
|
||||
hi link htmlLink Function
|
||||
hi link htmlSpecialTagName htmlTagName
|
||||
hi link htmlTag htmlTagName
|
||||
highlight link htmlEndTag htmlTagName
|
||||
highlight link htmlLink Function
|
||||
highlight link htmlSpecialTagName htmlTagName
|
||||
highlight link htmlTag htmlTagName
|
||||
|
||||
" Rails
|
||||
hi link rubyRailsARAssociationMethod Statement
|
||||
hi link rubyRailsARValidationMethod Statement
|
||||
hi link rubyRailsARMethod Statement
|
||||
hi link rubyRailsARCallbackMethod Statement
|
||||
hi link rubyRailsARClassMethod Statement
|
||||
highlight link rubyRailsARAssociationMethod Statement
|
||||
highlight link rubyRailsARValidationMethod Statement
|
||||
highlight link rubyRailsARMethod Statement
|
||||
highlight link rubyRailsARCallbackMethod Statement
|
||||
highlight link rubyRailsARClassMethod Statement
|
||||
|
||||
" Diff
|
||||
hi link diffAdded String
|
||||
hi link diffRemoved Function
|
||||
highlight link diffAdded String
|
||||
highlight link diffRemoved Function
|
||||
|
||||
if (has('terminal') && has('termguicolors')) || has('gui_running')
|
||||
let g:terminal_ansi_colors = [
|
||||
\ '#3A3E42',
|
||||
\ '#BF6262',
|
||||
\ '#A2A565',
|
||||
\ '#E9A96F',
|
||||
\ '#789BAD',
|
||||
\ '#9F7AA5',
|
||||
\ '#638E8A',
|
||||
\ '#737673',
|
||||
\ '#5D6369',
|
||||
\ '#BF6262',
|
||||
\ '#A5A76E',
|
||||
\ '#E9A96F',
|
||||
\ '#789BAD',
|
||||
\ '#9F7AA5',
|
||||
\ '#9F7AA5',
|
||||
\ '#E3E8E3'
|
||||
\ ]
|
||||
endif
|
||||
|
|
|
@ -1,76 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<gconf>
|
||||
<entry name="custom_command" mtime="1420709894" type="string">
|
||||
<stringvalue>zsh</stringvalue>
|
||||
</entry>
|
||||
<entry name="alternate_screen_scroll" mtime="1420709894" type="bool" value="true"/>
|
||||
<entry name="use_custom_command" mtime="1420709894" type="bool" value="true"/>
|
||||
<entry name="font" mtime="1420709894" type="string">
|
||||
<stringvalue>Ubuntu Mono 12</stringvalue>
|
||||
</entry>
|
||||
<entry name="scrollbar_position" mtime="1420709894" type="string">
|
||||
<stringvalue>hidden</stringvalue>
|
||||
</entry>
|
||||
<entry name="use_system_font" mtime="1420709894" type="bool" value="false"/>
|
||||
<entry name="word_chars" mtime="1420708695" type="string">
|
||||
<stringvalue>-A-Za-z0-9,./?%&#:_=+@~</stringvalue>
|
||||
</entry>
|
||||
<entry name="palette" mtime="1420709894" type="string">
|
||||
<stringvalue>#2C2C2F2F3333:#B0B04C4B504F:#919196965251:#E2E299995C5C:#666689889D9D:#8D8D64649494:#52527C7C7777:#606063636060:#4B4B50505656:#B0B04C4B504F:#949498985B5B:#E2E299995C5C:#666689889D9D:#8D8D64649494:#52527C7C7777:#DDDDE3E3DCDC</stringvalue>
|
||||
</entry>
|
||||
<entry name="default_size_rows" mtime="1420709894" type="int" value="40"/>
|
||||
<entry name="title" mtime="1420708695" type="string">
|
||||
<stringvalue>Terminal</stringvalue>
|
||||
</entry>
|
||||
<entry name="use_theme_colors" mtime="1420709894" type="bool" value="false"/>
|
||||
<entry name="cursor_blink_mode" mtime="1420708695" type="string">
|
||||
<stringvalue>system</stringvalue>
|
||||
</entry>
|
||||
<entry name="exit_action" mtime="1420708695" type="string">
|
||||
<stringvalue>close</stringvalue>
|
||||
</entry>
|
||||
<entry name="scrollback_lines" mtime="1420708695" type="int" value="512"/>
|
||||
<entry name="scrollback_unlimited" mtime="1420709894" type="bool" value="true"/>
|
||||
<entry name="visible_name" mtime="1420709894" type="string">
|
||||
<stringvalue>Spacegray</stringvalue>
|
||||
</entry>
|
||||
<entry name="silent_bell" mtime="1420709894" type="bool" value="true"/>
|
||||
<entry name="delete_binding" mtime="1420708695" type="string">
|
||||
<stringvalue>escape-sequence</stringvalue>
|
||||
</entry>
|
||||
<entry name="scroll_on_keystroke" mtime="1420708695" type="bool" value="true"/>
|
||||
<entry name="background_type" mtime="1420708695" type="string">
|
||||
<stringvalue>solid</stringvalue>
|
||||
</entry>
|
||||
<entry name="default_size_columns" mtime="1420709894" type="int" value="130"/>
|
||||
<entry name="use_custom_default_size" mtime="1420709894" type="bool" value="true"/>
|
||||
<entry name="default_show_menubar" mtime="1420709201" type="bool" value="true"/>
|
||||
<entry name="bold_color_same_as_fg" mtime="1420708695" type="bool" value="true"/>
|
||||
<entry name="background_color" mtime="1420709894" type="string">
|
||||
<stringvalue>#111113131414</stringvalue>
|
||||
</entry>
|
||||
<entry name="allow_bold" mtime="1420708695" type="bool" value="true"/>
|
||||
<entry name="backspace_binding" mtime="1420708695" type="string">
|
||||
<stringvalue>ascii-del</stringvalue>
|
||||
</entry>
|
||||
<entry name="title_mode" mtime="1420708695" type="string">
|
||||
<stringvalue>replace</stringvalue>
|
||||
</entry>
|
||||
<entry name="bold_color" mtime="1420709894" type="string">
|
||||
<stringvalue>#000000000000</stringvalue>
|
||||
</entry>
|
||||
<entry name="scroll_on_output" mtime="1420708695" type="bool" value="false"/>
|
||||
<entry name="scroll_background" mtime="1420708695" type="bool" value="true"/>
|
||||
<entry name="update_records" mtime="1420708695" type="bool" value="true"/>
|
||||
<entry name="login_shell" mtime="1420709894" type="bool" value="true"/>
|
||||
<entry name="foreground_color" mtime="1420709894" type="string">
|
||||
<stringvalue>#B7B7BBBBB7B7</stringvalue>
|
||||
</entry>
|
||||
<entry name="background_darkness" mtime="1420708695" type="float" value="0.5"/>
|
||||
<entry name="cursor_shape" mtime="1420708695" type="string">
|
||||
<stringvalue>block</stringvalue>
|
||||
</entry>
|
||||
<entry name="background_image" mtime="1420708695" type="string">
|
||||
<stringvalue></stringvalue>
|
||||
</entry>
|
||||
</gconf>
|
|
@ -2,167 +2,343 @@
|
|||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>Background Color</key>
|
||||
<dict>
|
||||
<key>Green Component</key>
|
||||
<real>0.0745098039215686</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.0784313725490196</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.0666666666666667</real>
|
||||
</dict>
|
||||
<key>Foreground Color</key>
|
||||
<dict>
|
||||
<key>Blue Component</key>
|
||||
<real>0.717647058823529</real>
|
||||
<key>Green Component</key>
|
||||
<real>0.733333333333333</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.717647058823529</real>
|
||||
</dict>
|
||||
<key>Ansi 0 Color</key>
|
||||
<dict>
|
||||
<key>Red Component</key>
|
||||
<real>0.172549019607843</real>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.2</real>
|
||||
<real>0.2606005072593689</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.184313725490196</real>
|
||||
</dict>
|
||||
<key>Ansi 8 Color</key>
|
||||
<dict>
|
||||
<real>0.24214529991149902</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.294117647058824</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.337254901960784</real>
|
||||
<key>Green Component</key>
|
||||
<real>0.313725490196078</real>
|
||||
<real>0.22709813714027405</real>
|
||||
</dict>
|
||||
<key>Ansi 1 Color</key>
|
||||
<dict>
|
||||
<key>Green Component</key>
|
||||
<real>0.298039215686275</real>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.313725490196078</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.690196078431373</real>
|
||||
</dict>
|
||||
<key>Ansi 9 Color</key>
|
||||
<dict>
|
||||
<real>0.38625353574752808</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.298039215686275</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.313725490196078</real>
|
||||
<real>0.38302761316299438</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.690196078431373</real>
|
||||
</dict>
|
||||
<key>Ansi 2 Color</key>
|
||||
<dict>
|
||||
<key>Red Component</key>
|
||||
<real>0.568627450980392</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.32156862745098</real>
|
||||
<key>Green Component</key>
|
||||
<real>0.588235294117647</real>
|
||||
<real>0.75040334463119507</real>
|
||||
</dict>
|
||||
<key>Ansi 10 Color</key>
|
||||
<dict>
|
||||
<key>Green Component</key>
|
||||
<real>0.596078431372549</real>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.356862745098039</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.580392156862745</real>
|
||||
</dict>
|
||||
<key>Ansi 3 Color</key>
|
||||
<dict>
|
||||
<key>Red Component</key>
|
||||
<real>0.886274509803922</real>
|
||||
<real>0.43116992712020874</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.6</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.36078431372549</real>
|
||||
<real>0.65454381704330444</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.64591926336288452</real>
|
||||
</dict>
|
||||
<key>Ansi 11 Color</key>
|
||||
<dict>
|
||||
<key>Red Component</key>
|
||||
<real>0.886274509803922</real>
|
||||
<key>Green Component</key>
|
||||
<real>0.6</real>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.36078431372549</real>
|
||||
</dict>
|
||||
<key>Ansi 4 Color</key>
|
||||
<dict>
|
||||
<key>Blue Component</key>
|
||||
<real>0.615686274509804</real>
|
||||
<real>0.43422031402587891</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.537254901960784</real>
|
||||
<real>0.66430401802062988</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.4</real>
|
||||
<real>0.91361129283905029</real>
|
||||
</dict>
|
||||
<key>Ansi 12 Color</key>
|
||||
<dict>
|
||||
<key>Green Component</key>
|
||||
<real>0.537254901960784</real>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.615686274509804</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.4</real>
|
||||
</dict>
|
||||
<key>Ansi 5 Color</key>
|
||||
<dict>
|
||||
<key>Red Component</key>
|
||||
<real>0.552941176470588</real>
|
||||
<real>0.67867463827133179</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.392156862745098</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.580392156862745</real>
|
||||
<real>0.60735100507736206</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.47183859348297119</real>
|
||||
</dict>
|
||||
<key>Ansi 13 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.580392156862745</real>
|
||||
<real>0.64678585529327393</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.392156862745098</real>
|
||||
<real>0.47856694459915161</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.552941176470588</real>
|
||||
</dict>
|
||||
<key>Ansi 6 Color</key>
|
||||
<dict>
|
||||
<key>Green Component</key>
|
||||
<real>0.486274509803922</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.466666666666667</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.32156862745098</real>
|
||||
<real>0.62496209144592285</real>
|
||||
</dict>
|
||||
<key>Ansi 14 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.466666666666667</real>
|
||||
<real>0.54086261987686157</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.486274509803922</real>
|
||||
<real>0.55614250898361206</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.32156862745098</real>
|
||||
</dict>
|
||||
<key>Ansi 7 Color</key>
|
||||
<dict>
|
||||
<key>Red Component</key>
|
||||
<real>0.376470588235294</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.376470588235294</real>
|
||||
<key>Green Component</key>
|
||||
<real>0.388235294117647</real>
|
||||
<real>0.39019036293029785</real>
|
||||
</dict>
|
||||
<key>Ansi 15 Color</key>
|
||||
<dict>
|
||||
<key>Green Component</key>
|
||||
<real>0.890196078431372</real>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.862745098039216</real>
|
||||
<real>0.8893858790397644</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.91079598665237427</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.866666666666667</real>
|
||||
<real>0.89210999011993408</real>
|
||||
</dict>
|
||||
<key>Ansi 2 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.39439210295677185</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.64687436819076538</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.63510900735855103</real>
|
||||
</dict>
|
||||
<key>Ansi 3 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.43422031402587891</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.66430401802062988</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.91361129283905029</real>
|
||||
</dict>
|
||||
<key>Ansi 4 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.67867463827133179</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.60735100507736206</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.47183859348297119</real>
|
||||
</dict>
|
||||
<key>Ansi 5 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.64678585529327393</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.47856694459915161</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.62496209144592285</real>
|
||||
</dict>
|
||||
<key>Ansi 6 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.54086261987686157</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.55614250898361206</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.39019036293029785</real>
|
||||
</dict>
|
||||
<key>Ansi 7 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.76862746477127075</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.72156864404678345</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.70196080207824707</real>
|
||||
</dict>
|
||||
<key>Ansi 8 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.41200909018516541</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.38769751787185669</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.36583763360977173</real>
|
||||
</dict>
|
||||
<key>Ansi 9 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.38625353574752808</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.38302761316299438</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.75040334463119507</real>
|
||||
</dict>
|
||||
<key>Background Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.078431375324726105</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.074509806931018829</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.066666670143604279</real>
|
||||
</dict>
|
||||
<key>Badge Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>0.5</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.0</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.1491314172744751</real>
|
||||
<key>Red Component</key>
|
||||
<real>1</real>
|
||||
</dict>
|
||||
<key>Bold Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>1</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>1</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.99999600648880005</real>
|
||||
</dict>
|
||||
<key>Cursor Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.78076320886611938</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.7807731032371521</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.7807546854019165</real>
|
||||
</dict>
|
||||
<key>Cursor Guide Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>0.25</real>
|
||||
<key>Blue Component</key>
|
||||
<real>1</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.9268307089805603</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.70213186740875244</real>
|
||||
</dict>
|
||||
<key>Cursor Text Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>1</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>1</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.99999600648880005</real>
|
||||
</dict>
|
||||
<key>Foreground Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.76862746477127075</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.72156864404678345</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.70196080207824707</real>
|
||||
</dict>
|
||||
<key>Link Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.73423302173614502</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.35916060209274292</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.0</real>
|
||||
</dict>
|
||||
<key>Selected Text Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.0</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.0</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.0</real>
|
||||
</dict>
|
||||
<key>Selection Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>1</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.86945539712905884</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.75742977857589722</real>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
|
@ -0,0 +1,344 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>Ansi 0 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.26054510474205017</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.24379143118858337</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.22372162342071533</real>
|
||||
</dict>
|
||||
<key>Ansi 1 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.37230050563812256</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.35813444852828979</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.80401450395584106</real>
|
||||
</dict>
|
||||
<key>Ansi 10 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.40080580115318298</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.65526920557022095</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.64520841836929321</real>
|
||||
</dict>
|
||||
<key>Ansi 11 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.39201998710632324</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.64936584234237671</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.95877295732498169</real>
|
||||
</dict>
|
||||
<key>Ansi 12 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.68676561117172241</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.6128193736076355</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.43182981014251709</real>
|
||||
</dict>
|
||||
<key>Ansi 13 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.65840566158294678</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.47110235691070557</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.65062153339385986</real>
|
||||
</dict>
|
||||
<key>Ansi 14 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.54233312606811523</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.56263667345046997</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.33528923988342285</real>
|
||||
</dict>
|
||||
<key>Ansi 15 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.88852220773696899</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.91067796945571899</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.88561469316482544</real>
|
||||
</dict>
|
||||
<key>Ansi 2 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.35946464538574219</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.64758652448654175</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.63253980875015259</real>
|
||||
</dict>
|
||||
<key>Ansi 3 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.39201998710632324</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.64936584234237671</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.95877295732498169</real>
|
||||
</dict>
|
||||
<key>Ansi 4 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.68676561117172241</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.6128193736076355</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.43182981014251709</real>
|
||||
</dict>
|
||||
<key>Ansi 5 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.65840566158294678</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.47110235691070557</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.65062153339385986</real>
|
||||
</dict>
|
||||
<key>Ansi 6 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.54233312606811523</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.56263667345046997</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.33528923988342285</real>
|
||||
</dict>
|
||||
<key>Ansi 7 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.76862746477127075</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.72156864404678345</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.70196080207824707</real>
|
||||
</dict>
|
||||
<key>Ansi 8 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.41434633731842041</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.38921594619750977</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.35910966992378235</real>
|
||||
</dict>
|
||||
<key>Ansi 9 Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.37230050563812256</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.35813444852828979</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.80401450395584106</real>
|
||||
</dict>
|
||||
<key>Background Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.14117647707462311</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.14117647707462311</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.14117647707462311</real>
|
||||
</dict>
|
||||
<key>Badge Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>0.5</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.0</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.1491314172744751</real>
|
||||
<key>Red Component</key>
|
||||
<real>1</real>
|
||||
</dict>
|
||||
<key>Bold Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>1</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>1</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.99999600648880005</real>
|
||||
</dict>
|
||||
<key>Cursor Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.76862746477127075</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.72156864404678345</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.70196080207824707</real>
|
||||
</dict>
|
||||
<key>Cursor Guide Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>0.25</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.76862746477127075</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.72156864404678345</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.70196080207824707</real>
|
||||
</dict>
|
||||
<key>Cursor Text Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.14117647707462311</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.14117647707462311</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.14117647707462311</real>
|
||||
</dict>
|
||||
<key>Foreground Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.76862746477127075</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.72156864404678345</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.70196080207824707</real>
|
||||
</dict>
|
||||
<key>Link Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.73423302173614502</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.35916060209274292</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.0</real>
|
||||
</dict>
|
||||
<key>Selected Text Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>0.0</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.0</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.0</real>
|
||||
</dict>
|
||||
<key>Selection Color</key>
|
||||
<dict>
|
||||
<key>Alpha Component</key>
|
||||
<real>1</real>
|
||||
<key>Blue Component</key>
|
||||
<real>1</real>
|
||||
<key>Color Space</key>
|
||||
<string>sRGB</string>
|
||||
<key>Green Component</key>
|
||||
<real>0.86945539712905884</real>
|
||||
<key>Red Component</key>
|
||||
<real>0.75742977857589722</real>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
Binary file not shown.
After Width: | Height: | Size: 647 KiB |
Binary file not shown.
After Width: | Height: | Size: 583 KiB |
Binary file not shown.
After Width: | Height: | Size: 643 KiB |
Loading…
Reference in New Issue