├── LICENSE.md ├── Readme.md ├── colors └── ryuuko.vim ├── iterm2 └── ryuuko.itermcolors ├── putty └── ryuuko.reg ├── termite └── config ├── xfce4-terminal └── terminalrc └── xresources └── .Xresources /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Dylan Araps 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | # Ryuuko 2 | 3 | A colorscheme~ 4 | 5 | ![scrot](http://i.imgur.com/4Tfb9AK.png) 6 | -------------------------------------------------------------------------------- /colors/ryuuko.vim: -------------------------------------------------------------------------------- 1 | " ryuuko.vim -- Vim color scheme. 2 | " Author: Dylan Araps 3 | " Webpage: https://github.com/dylanaraps/ryuuko 4 | " Description: A colorscheme 5 | 6 | hi clear 7 | 8 | set background=dark 9 | 10 | if exists("syntax_on") 11 | syntax reset 12 | endif 13 | 14 | let colors_name = "ryuuko" 15 | 16 | " highlight groups {{{ 17 | 18 | if &t_Co >= 256 || has("gui_running") 19 | hi Normal ctermbg=0 ctermfg=7 cterm=NONE guibg=#232c33 guifg=#f0f0f0 gui=NONE 20 | set background=dark 21 | hi NonText ctermbg=NONE ctermfg=0 cterm=NONE guibg=NONE guifg=#232c33 gui=NONE 22 | hi Comment ctermbg=NONE ctermfg=8 cterm=NONE guibg=NONE guifg=#70838c gui=NONE 23 | hi Constant ctermbg=NONE ctermfg=3 cterm=NONE guibg=NONE guifg=#bfb7a1 gui=NONE 24 | hi Error ctermbg=1 ctermfg=7 cterm=NONE guibg=#99736e guifg=#f0f0f0 gui=NONE 25 | hi Identifier ctermbg=NONE ctermfg=1 cterm=NONE guibg=NONE guifg=#99736e gui=NONE 26 | hi Ignore ctermbg=8 ctermfg=0 cterm=NONE guibg=#70838c guifg=#232c33 gui=NONE 27 | hi PreProc ctermbg=NONE ctermfg=3 cterm=NONE guibg=NONE guifg=#bfb7a1 gui=NONE 28 | hi Special ctermbg=NONE ctermfg=6 cterm=NONE guibg=NONE guifg=#99BFBA gui=NONE 29 | hi Statement ctermbg=NONE ctermfg=1 cterm=NONE guibg=NONE guifg=#99736e gui=NONE 30 | hi String ctermbg=NONE ctermfg=2 cterm=NONE guibg=NONE guifg=#78a090 gui=NONE 31 | hi Number ctermbg=NONE ctermfg=3 cterm=NONE guibg=NONE guifg=#bfb7a1 gui=NONE 32 | hi Todo ctermbg=8 ctermfg=3 cterm=NONE guibg=#70838c guifg=#bfb7a1 gui=NONE 33 | hi Type ctermbg=NONE ctermfg=3 cterm=NONE guibg=NONE guifg=#bfb7a1 gui=NONE 34 | hi Underlined ctermbg=NONE ctermfg=1 cterm=underline guibg=NONE guifg=#99736e gui=underline 35 | hi StatusLine ctermbg=7 ctermfg=0 cterm=NONE guibg=#f0f0f0 guifg=#232c33 gui=NONE 36 | hi StatusLineNC ctermbg=NONE ctermfg=NONE cterm=NONE guibg=NONE guifg=NONE gui=NONE 37 | hi TabLine ctermbg=NONE ctermfg=8 cterm=NONE guibg=NONE guifg=#70838c gui=NONE 38 | hi TabLineFill ctermbg=NONE ctermfg=8 cterm=NONE guibg=NONE guifg=#70838c gui=NONE 39 | hi TabLineSel ctermbg=4 ctermfg=0 cterm=NONE guibg=#7c9fa6 guifg=#232c33 gui=NONE 40 | hi TermCursorNC ctermbg=3 ctermfg=0 cterm=NONE guibg=#bfb7a1 guifg=#232c33 gui=NONE 41 | hi VertSplit ctermbg=NONE ctermfg=NONE cterm=NONE guibg=NONE guifg=NONE gui=NONE 42 | hi Title ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 43 | hi CursorLine ctermbg=NONE ctermfg=8 cterm=NONE guibg=NONE guifg=#70838c gui=NONE 44 | hi LineNr ctermbg=NONE ctermfg=8 cterm=NONE guibg=NONE guifg=#70838c gui=NONE 45 | hi CursorLineNr ctermbg=NONE ctermfg=8 cterm=NONE guibg=NONE guifg=#70838c gui=NONE 46 | hi helpLeadBlank ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 47 | hi helpNormal ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 48 | hi Visual ctermbg=8 ctermfg=0 cterm=NONE guibg=#70838c guifg=#232c33 gui=NONE 49 | hi VisualNOS ctermbg=NONE ctermfg=1 cterm=NONE guibg=NONE guifg=#99736e gui=NONE 50 | hi Pmenu ctermbg=8 ctermfg=7 cterm=NONE guibg=#70838c guifg=#f0f0f0 gui=NONE 51 | hi PmenuSbar ctermbg=6 ctermfg=7 cterm=NONE guibg=#99BFBA guifg=#f0f0f0 gui=NONE 52 | hi PmenuSel ctermbg=4 ctermfg=0 cterm=NONE guibg=#7c9fa6 guifg=#232c33 gui=NONE 53 | hi PmenuThumb ctermbg=8 ctermfg=8 cterm=NONE guibg=#70838c guifg=#70838c gui=NONE 54 | hi FoldColumn ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 55 | hi Folded ctermbg=NONE ctermfg=8 cterm=NONE guibg=NONE guifg=#70838c gui=NONE 56 | hi WildMenu ctermbg=2 ctermfg=0 cterm=NONE guibg=#78a090 guifg=#232c33 gui=NONE 57 | hi SpecialKey ctermbg=NONE ctermfg=8 cterm=NONE guibg=NONE guifg=#70838c gui=NONE 58 | hi DiffAdd ctermbg=NONE ctermfg=2 cterm=NONE guibg=NONE guifg=#78a090 gui=NONE 59 | hi DiffChange ctermbg=NONE ctermfg=8 cterm=NONE guibg=NONE guifg=#70838c gui=NONE 60 | hi DiffDelete ctermbg=NONE ctermfg=1 cterm=NONE guibg=NONE guifg=#99736e gui=NONE 61 | hi DiffText ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 62 | hi IncSearch ctermbg=3 ctermfg=0 cterm=NONE guibg=#bfb7a1 guifg=#232c33 gui=NONE 63 | hi Search ctermbg=3 ctermfg=0 cterm=NONE guibg=#bfb7a1 guifg=#232c33 gui=NONE 64 | hi Directory ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 65 | hi MatchParen ctermbg=8 ctermfg=0 cterm=NONE guibg=#70838c guifg=#232c33 gui=NONE 66 | hi ColorColumn ctermbg=4 ctermfg=4 cterm=NONE guibg=#7c9fa6 guifg=#7c9fa6 gui=NONE 67 | hi signColumn ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 68 | hi ErrorMsg ctermbg=NONE ctermfg=8 cterm=NONE guibg=NONE guifg=#70838c gui=NONE 69 | hi ModeMsg ctermbg=NONE ctermfg=2 cterm=NONE guibg=NONE guifg=#78a090 gui=NONE 70 | hi MoreMsg ctermbg=NONE ctermfg=2 cterm=NONE guibg=NONE guifg=#78a090 gui=NONE 71 | hi Question ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 72 | hi WarningMsg ctermbg=1 ctermfg=0 cterm=NONE guibg=#99736e guifg=#232c33 gui=NONE 73 | hi Cursor ctermbg=NONE ctermfg=8 cterm=NONE guibg=NONE guifg=#70838c gui=NONE 74 | hi Structure ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 75 | hi CursorColumn ctermbg=8 ctermfg=7 cterm=NONE guibg=#70838c guifg=#f0f0f0 gui=NONE 76 | hi ModeMsg ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 77 | hi SpellBad ctermbg=NONE ctermfg=1 cterm=underline guibg=NONE guifg=#99736e gui=underline guisp=#99736e 78 | hi SpellCap ctermbg=NONE ctermfg=4 cterm=underline guibg=NONE guifg=#7c9fa6 gui=underline guisp=#7c9fa6 79 | hi SpellLocal ctermbg=NONE ctermfg=5 cterm=underline guibg=NONE guifg=#BF9C86 gui=underline guisp=#BF9C86 80 | hi SpellRare ctermbg=NONE ctermfg=6 cterm=underline guibg=NONE guifg=#99BFBA gui=underline guisp=#99BFBA 81 | hi Boolean ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 82 | hi Character ctermbg=NONE ctermfg=1 cterm=NONE guibg=NONE guifg=#99736e gui=NONE 83 | hi Conditional ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 84 | hi Define ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 85 | hi Delimiter ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 86 | hi Float ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 87 | hi Include ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 88 | hi Keyword ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 89 | hi Label ctermbg=NONE ctermfg=3 cterm=NONE guibg=NONE guifg=#bfb7a1 gui=NONE 90 | hi Operator ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 91 | hi Repeat ctermbg=NONE ctermfg=3 cterm=NONE guibg=NONE guifg=#bfb7a1 gui=NONE 92 | hi SpecialChar ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 93 | hi Tag ctermbg=NONE ctermfg=3 cterm=NONE guibg=NONE guifg=#bfb7a1 gui=NONE 94 | hi Typedef ctermbg=NONE ctermfg=3 cterm=NONE guibg=NONE guifg=#bfb7a1 gui=NONE 95 | hi vimUserCommand ctermbg=NONE ctermfg=1 cterm=BOLD guibg=NONE guifg=#99736e gui=BOLD 96 | hi link vimMap vimUserCommand 97 | hi link vimLet vimUserCommand 98 | hi link vimCommand vimUserCommand 99 | hi link vimFTCmd vimUserCommand 100 | hi link vimAutoCmd vimUserCommand 101 | hi link vimNotFunc vimUserCommand 102 | hi vimNotation ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 103 | hi vimMapModKey ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 104 | hi vimBracket ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 105 | hi vimCommentString ctermbg=NONE ctermfg=8 cterm=NONE guibg=NONE guifg=#70838c gui=NONE 106 | hi htmlLink ctermbg=NONE ctermfg=1 cterm=underline guibg=NONE guifg=#99736e gui=underline 107 | hi htmlBold ctermbg=NONE ctermfg=3 cterm=NONE guibg=NONE guifg=#bfb7a1 gui=NONE 108 | hi htmlItalic ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 109 | hi htmlEndTag ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 110 | hi htmlTag ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 111 | hi htmlTagName ctermbg=NONE ctermfg=1 cterm=BOLD guibg=NONE guifg=#99736e gui=BOLD 112 | hi htmlH1 ctermbg=NONE ctermfg=7 cterm=BOLD guibg=NONE guifg=#f0f0f0 gui=BOLD 113 | hi link htmlH2 htmlH1 114 | hi link htmlH3 htmlH1 115 | hi link htmlH4 htmlH1 116 | hi link htmlH5 htmlH1 117 | hi link htmlH6 htmlH1 118 | hi cssMultiColumnAttr ctermbg=NONE ctermfg=2 cterm=NONE guibg=NONE guifg=#78a090 gui=NONE 119 | hi link cssFontAttr cssMultiColumnAttr 120 | hi link cssFlexibleBoxAttr cssMultiColumnAttr 121 | hi cssBraces ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 122 | hi link cssAttrComma cssBraces 123 | hi cssValueLength ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 124 | hi cssUnitDecorators ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 125 | hi cssValueNumber ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 126 | hi link cssValueLength cssValueNumber 127 | hi cssNoise ctermbg=NONE ctermfg=8 cterm=NONE guibg=NONE guifg=#70838c gui=NONE 128 | hi cssTagName ctermbg=NONE ctermfg=1 cterm=NONE guibg=NONE guifg=#99736e gui=NONE 129 | hi cssFunctionName ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 130 | hi scssSelectorChar ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 131 | hi scssAttribute ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 132 | hi link scssDefinition cssNoise 133 | hi sassidChar ctermbg=NONE ctermfg=1 cterm=NONE guibg=NONE guifg=#99736e gui=NONE 134 | hi sassClassChar ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 135 | hi sassInclude ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 136 | hi sassMixing ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 137 | hi sassMixinName ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 138 | hi javaScript ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 139 | hi javaScriptBraces ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 140 | hi javaScriptNumber ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 141 | hi markdownAutomaticLink ctermbg=NONE ctermfg=1 cterm=underline guibg=NONE guifg=#99736e gui=underline 142 | hi link markdownUrl markdownAutomaticLink 143 | hi markdownError ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 144 | hi markdownCode ctermbg=NONE ctermfg=3 cterm=NONE guibg=NONE guifg=#bfb7a1 gui=NONE 145 | hi markdownCodeBlock ctermbg=NONE ctermfg=3 cterm=NONE guibg=NONE guifg=#bfb7a1 gui=NONE 146 | hi markdownCodeDelimiter ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 147 | hi xdefaultsValue ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 148 | hi rubyInclude ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 149 | hi rubyDefine ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 150 | hi rubyFunction ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 151 | hi rubyStringDelimiter ctermbg=NONE ctermfg=2 cterm=NONE guibg=NONE guifg=#78a090 gui=NONE 152 | hi rubyInteger ctermbg=NONE ctermfg=3 cterm=NONE guibg=NONE guifg=#bfb7a1 gui=NONE 153 | hi rubyAttribute ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 154 | hi rubyConstant ctermbg=NONE ctermfg=3 cterm=NONE guibg=NONE guifg=#bfb7a1 gui=NONE 155 | hi rubyInterpolation ctermbg=NONE ctermfg=2 cterm=NONE guibg=NONE guifg=#78a090 gui=NONE 156 | hi rubyInterpolationDelimiter ctermbg=NONE ctermfg=3 cterm=NONE guibg=NONE guifg=#bfb7a1 gui=NONE 157 | hi rubyRegexp ctermbg=NONE ctermfg=6 cterm=NONE guibg=NONE guifg=#99BFBA gui=NONE 158 | hi rubySymbol ctermbg=NONE ctermfg=2 cterm=NONE guibg=NONE guifg=#78a090 gui=NONE 159 | hi rubyTodo ctermbg=NONE ctermfg=8 cterm=NONE guibg=NONE guifg=#70838c gui=NONE 160 | hi rubyRegexpAnchor ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 161 | hi link rubyRegexpQuantifier rubyRegexpAnchor 162 | hi pythonOperator ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 163 | hi pythonFunction ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 164 | hi pythonRepeat ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 165 | hi pythonStatement ctermbg=NONE ctermfg=1 cterm=Bold guibg=NONE guifg=#99736e gui=Bold 166 | hi pythonBuiltIn ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 167 | hi phpMemberSelector ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 168 | hi phpComparison ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 169 | hi phpParent ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 170 | hi cOperator ctermbg=NONE ctermfg=6 cterm=NONE guibg=NONE guifg=#99BFBA gui=NONE 171 | hi cPreCondit ctermbg=NONE ctermfg=5 cterm=NONE guibg=NONE guifg=#BF9C86 gui=NONE 172 | hi SignifySignAdd ctermbg=NONE ctermfg=2 cterm=NONE guibg=NONE guifg=#78a090 gui=NONE 173 | hi SignifySignChange ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 174 | hi SignifySignDelete ctermbg=NONE ctermfg=1 cterm=NONE guibg=NONE guifg=#99736e gui=NONE 175 | hi NERDTreeDirSlash ctermbg=NONE ctermfg=4 cterm=NONE guibg=NONE guifg=#7c9fa6 gui=NONE 176 | hi NERDTreeExecFile ctermbg=NONE ctermfg=7 cterm=NONE guibg=NONE guifg=#f0f0f0 gui=NONE 177 | elseif &t_Co == 8 || $TERM !~# '^linux' || &t_Co == 16 178 | set t_Co=16 179 | hi Normal ctermbg=black ctermfg=white cterm=NONE 180 | set background=dark 181 | hi NonText ctermbg=NONE ctermfg=black cterm=NONE 182 | hi Comment ctermbg=NONE ctermfg=gray cterm=NONE 183 | hi Constant ctermbg=NONE ctermfg=yellow cterm=NONE 184 | hi Error ctermbg=red ctermfg=white cterm=NONE 185 | hi Identifier ctermbg=NONE ctermfg=red cterm=NONE 186 | hi Ignore ctermbg=gray ctermfg=black cterm=NONE 187 | hi PreProc ctermbg=NONE ctermfg=yellow cterm=NONE 188 | hi Special ctermbg=NONE ctermfg=cyan cterm=NONE 189 | hi Statement ctermbg=NONE ctermfg=red cterm=NONE 190 | hi String ctermbg=NONE ctermfg=green cterm=NONE 191 | hi Number ctermbg=NONE ctermfg=yellow cterm=NONE 192 | hi Todo ctermbg=gray ctermfg=yellow cterm=NONE 193 | hi Type ctermbg=NONE ctermfg=yellow cterm=NONE 194 | hi Underlined ctermbg=NONE ctermfg=red cterm=underline 195 | hi StatusLine ctermbg=white ctermfg=black cterm=NONE 196 | hi StatusLineNC ctermbg=NONE ctermfg=NONE cterm=NONE 197 | hi TabLine ctermbg=NONE ctermfg=gray cterm=NONE 198 | hi TabLineFill ctermbg=NONE ctermfg=gray cterm=NONE 199 | hi TabLineSel ctermbg=blue ctermfg=black cterm=NONE 200 | hi TermCursorNC ctermbg=yellow ctermfg=black cterm=NONE 201 | hi VertSplit ctermbg=NONE ctermfg=NONE cterm=NONE 202 | hi Title ctermbg=NONE ctermfg=blue cterm=NONE 203 | hi CursorLine ctermbg=NONE ctermfg=gray cterm=NONE 204 | hi LineNr ctermbg=NONE ctermfg=gray cterm=NONE 205 | hi CursorLineNr ctermbg=NONE ctermfg=gray cterm=NONE 206 | hi helpLeadBlank ctermbg=NONE ctermfg=white cterm=NONE 207 | hi helpNormal ctermbg=NONE ctermfg=white cterm=NONE 208 | hi Visual ctermbg=gray ctermfg=black cterm=NONE 209 | hi VisualNOS ctermbg=NONE ctermfg=red cterm=NONE 210 | hi Pmenu ctermbg=gray ctermfg=white cterm=NONE 211 | hi PmenuSbar ctermbg=cyan ctermfg=white cterm=NONE 212 | hi PmenuSel ctermbg=blue ctermfg=black cterm=NONE 213 | hi PmenuThumb ctermbg=gray ctermfg=gray cterm=NONE 214 | hi FoldColumn ctermbg=NONE ctermfg=white cterm=NONE 215 | hi Folded ctermbg=NONE ctermfg=gray cterm=NONE 216 | hi WildMenu ctermbg=green ctermfg=black cterm=NONE 217 | hi SpecialKey ctermbg=NONE ctermfg=gray cterm=NONE 218 | hi DiffAdd ctermbg=NONE ctermfg=green cterm=NONE 219 | hi DiffChange ctermbg=NONE ctermfg=gray cterm=NONE 220 | hi DiffDelete ctermbg=NONE ctermfg=red cterm=NONE 221 | hi DiffText ctermbg=NONE ctermfg=blue cterm=NONE 222 | hi IncSearch ctermbg=yellow ctermfg=black cterm=NONE 223 | hi Search ctermbg=yellow ctermfg=black cterm=NONE 224 | hi Directory ctermbg=NONE ctermfg=blue cterm=NONE 225 | hi MatchParen ctermbg=gray ctermfg=black cterm=NONE 226 | hi ColorColumn ctermbg=blue ctermfg=blue cterm=NONE 227 | hi signColumn ctermbg=NONE ctermfg=blue cterm=NONE 228 | hi ErrorMsg ctermbg=NONE ctermfg=gray cterm=NONE 229 | hi ModeMsg ctermbg=NONE ctermfg=green cterm=NONE 230 | hi MoreMsg ctermbg=NONE ctermfg=green cterm=NONE 231 | hi Question ctermbg=NONE ctermfg=blue cterm=NONE 232 | hi WarningMsg ctermbg=red ctermfg=black cterm=NONE 233 | hi Cursor ctermbg=NONE ctermfg=gray cterm=NONE 234 | hi Structure ctermbg=NONE ctermfg=orange cterm=NONE 235 | hi CursorColumn ctermbg=gray ctermfg=white cterm=NONE 236 | hi ModeMsg ctermbg=NONE ctermfg=white cterm=NONE 237 | hi SpellBad ctermbg=NONE ctermfg=red cterm=underline 238 | hi SpellCap ctermbg=NONE ctermfg=blue cterm=underline 239 | hi SpellLocal ctermbg=NONE ctermfg=orange cterm=underline 240 | hi SpellRare ctermbg=NONE ctermfg=cyan cterm=underline 241 | hi Boolean ctermbg=NONE ctermfg=orange cterm=NONE 242 | hi Character ctermbg=NONE ctermfg=red cterm=NONE 243 | hi Conditional ctermbg=NONE ctermfg=orange cterm=NONE 244 | hi Define ctermbg=NONE ctermfg=orange cterm=NONE 245 | hi Delimiter ctermbg=NONE ctermfg=orange cterm=NONE 246 | hi Float ctermbg=NONE ctermfg=orange cterm=NONE 247 | hi Include ctermbg=NONE ctermfg=blue cterm=NONE 248 | hi Keyword ctermbg=NONE ctermfg=orange cterm=NONE 249 | hi Label ctermbg=NONE ctermfg=yellow cterm=NONE 250 | hi Operator ctermbg=NONE ctermfg=white cterm=NONE 251 | hi Repeat ctermbg=NONE ctermfg=yellow cterm=NONE 252 | hi SpecialChar ctermbg=NONE ctermfg=orange cterm=NONE 253 | hi Tag ctermbg=NONE ctermfg=yellow cterm=NONE 254 | hi Typedef ctermbg=NONE ctermfg=yellow cterm=NONE 255 | hi vimUserCommand ctermbg=NONE ctermfg=red cterm=BOLD 256 | hi link vimMap vimUserCommand 257 | hi link vimLet vimUserCommand 258 | hi link vimCommand vimUserCommand 259 | hi link vimFTCmd vimUserCommand 260 | hi link vimAutoCmd vimUserCommand 261 | hi link vimNotFunc vimUserCommand 262 | hi vimNotation ctermbg=NONE ctermfg=blue cterm=NONE 263 | hi vimMapModKey ctermbg=NONE ctermfg=blue cterm=NONE 264 | hi vimBracket ctermbg=NONE ctermfg=white cterm=NONE 265 | hi vimCommentString ctermbg=NONE ctermfg=gray cterm=NONE 266 | hi htmlLink ctermbg=NONE ctermfg=red cterm=underline 267 | hi htmlBold ctermbg=NONE ctermfg=yellow cterm=NONE 268 | hi htmlItalic ctermbg=NONE ctermfg=orange cterm=NONE 269 | hi htmlEndTag ctermbg=NONE ctermfg=white cterm=NONE 270 | hi htmlTag ctermbg=NONE ctermfg=white cterm=NONE 271 | hi htmlTagName ctermbg=NONE ctermfg=red cterm=BOLD 272 | hi htmlH1 ctermbg=NONE ctermfg=white cterm=BOLD 273 | hi link htmlH2 htmlH1 274 | hi link htmlH3 htmlH1 275 | hi link htmlH4 htmlH1 276 | hi link htmlH5 htmlH1 277 | hi link htmlH6 htmlH1 278 | hi cssMultiColumnAttr ctermbg=NONE ctermfg=green cterm=NONE 279 | hi link cssFontAttr cssMultiColumnAttr 280 | hi link cssFlexibleBoxAttr cssMultiColumnAttr 281 | hi cssBraces ctermbg=NONE ctermfg=white cterm=NONE 282 | hi link cssAttrComma cssBraces 283 | hi cssValueLength ctermbg=NONE ctermfg=white cterm=NONE 284 | hi cssUnitDecorators ctermbg=NONE ctermfg=white cterm=NONE 285 | hi cssValueNumber ctermbg=NONE ctermfg=white cterm=NONE 286 | hi link cssValueLength cssValueNumber 287 | hi cssNoise ctermbg=NONE ctermfg=gray cterm=NONE 288 | hi cssTagName ctermbg=NONE ctermfg=red cterm=NONE 289 | hi cssFunctionName ctermbg=NONE ctermfg=blue cterm=NONE 290 | hi scssSelectorChar ctermbg=NONE ctermfg=white cterm=NONE 291 | hi scssAttribute ctermbg=NONE ctermfg=white cterm=NONE 292 | hi link scssDefinition cssNoise 293 | hi sassidChar ctermbg=NONE ctermfg=red cterm=NONE 294 | hi sassClassChar ctermbg=NONE ctermfg=orange cterm=NONE 295 | hi sassInclude ctermbg=NONE ctermfg=orange cterm=NONE 296 | hi sassMixing ctermbg=NONE ctermfg=orange cterm=NONE 297 | hi sassMixinName ctermbg=NONE ctermfg=blue cterm=NONE 298 | hi javaScript ctermbg=NONE ctermfg=white cterm=NONE 299 | hi javaScriptBraces ctermbg=NONE ctermfg=white cterm=NONE 300 | hi javaScriptNumber ctermbg=NONE ctermfg=orange cterm=NONE 301 | hi markdownAutomaticLink ctermbg=NONE ctermfg=red cterm=underline 302 | hi link markdownUrl markdownAutomaticLink 303 | hi markdownError ctermbg=NONE ctermfg=white cterm=NONE 304 | hi markdownCode ctermbg=NONE ctermfg=yellow cterm=NONE 305 | hi markdownCodeBlock ctermbg=NONE ctermfg=yellow cterm=NONE 306 | hi markdownCodeDelimiter ctermbg=NONE ctermfg=orange cterm=NONE 307 | hi xdefaultsValue ctermbg=NONE ctermfg=white cterm=NONE 308 | hi rubyInclude ctermbg=NONE ctermfg=blue cterm=NONE 309 | hi rubyDefine ctermbg=NONE ctermfg=orange cterm=NONE 310 | hi rubyFunction ctermbg=NONE ctermfg=blue cterm=NONE 311 | hi rubyStringDelimiter ctermbg=NONE ctermfg=green cterm=NONE 312 | hi rubyInteger ctermbg=NONE ctermfg=yellow cterm=NONE 313 | hi rubyAttribute ctermbg=NONE ctermfg=blue cterm=NONE 314 | hi rubyConstant ctermbg=NONE ctermfg=yellow cterm=NONE 315 | hi rubyInterpolation ctermbg=NONE ctermfg=green cterm=NONE 316 | hi rubyInterpolationDelimiter ctermbg=NONE ctermfg=yellow cterm=NONE 317 | hi rubyRegexp ctermbg=NONE ctermfg=cyan cterm=NONE 318 | hi rubySymbol ctermbg=NONE ctermfg=green cterm=NONE 319 | hi rubyTodo ctermbg=NONE ctermfg=gray cterm=NONE 320 | hi rubyRegexpAnchor ctermbg=NONE ctermfg=white cterm=NONE 321 | hi link rubyRegexpQuantifier rubyRegexpAnchor 322 | hi pythonOperator ctermbg=NONE ctermfg=orange cterm=NONE 323 | hi pythonFunction ctermbg=NONE ctermfg=blue cterm=NONE 324 | hi pythonRepeat ctermbg=NONE ctermfg=orange cterm=NONE 325 | hi pythonStatement ctermbg=NONE ctermfg=red cterm=Bold 326 | hi pythonBuiltIn ctermbg=NONE ctermfg=blue cterm=NONE 327 | hi phpMemberSelector ctermbg=NONE ctermfg=white cterm=NONE 328 | hi phpComparison ctermbg=NONE ctermfg=white cterm=NONE 329 | hi phpParent ctermbg=NONE ctermfg=white cterm=NONE 330 | hi cOperator ctermbg=NONE ctermfg=cyan cterm=NONE 331 | hi cPreCondit ctermbg=NONE ctermfg=orange cterm=NONE 332 | hi SignifySignAdd ctermbg=NONE ctermfg=green cterm=NONE 333 | hi SignifySignChange ctermbg=NONE ctermfg=blue cterm=NONE 334 | hi SignifySignDelete ctermbg=NONE ctermfg=red cterm=NONE 335 | hi NERDTreeDirSlash ctermbg=NONE ctermfg=blue cterm=NONE 336 | hi NERDTreeExecFile ctermbg=NONE ctermfg=white cterm=NONE 337 | endif 338 | 339 | 340 | " Generated with RNB (https://gist.github.com/romainl/5cd2f4ec222805f49eca) 341 | 342 | " }}} 343 | 344 | " Neovim Terminal Mode Colors. 345 | let g:terminal_color_0 = "\#232c33" 346 | let g:terminal_color_1 = "\#99736e" 347 | let g:terminal_color_2 = "\#78a090" 348 | let g:terminal_color_3 = "\#bfb7a1" 349 | let g:terminal_color_4 = "\#7c9fa6" 350 | let g:terminal_color_5 = "\#BF9C86" 351 | let g:terminal_color_6 = "\#99BFBA" 352 | let g:terminal_color_7 = "\#f0f0f0" 353 | let g:terminal_color_8 = "\#70838c" 354 | let g:terminal_color_9 = "\#99736e" 355 | let g:terminal_color_10 = "\#78a090" 356 | let g:terminal_color_11 = "\#bfb7a1" 357 | let g:terminal_color_12 = "\#7c9fa6" 358 | let g:terminal_color_13 = "\#BF9C86" 359 | let g:terminal_color_14 = "\#99BFBA" 360 | let g:terminal_color_15 = "\#f0f0f0" 361 | 362 | " }}} 363 | -------------------------------------------------------------------------------- /iterm2/ryuuko.itermcolors: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Ansi 0 Color 6 | 7 | Color Space 8 | sRGB 9 | Blue Component 10 | 0.2 11 | Green Component 12 | 0.17254901960784313 13 | Red Component 14 | 0.13725490196078433 15 | 16 | Ansi 1 Color 17 | 18 | Color Space 19 | sRGB 20 | Blue Component 21 | 0.43137254901960786 22 | Green Component 23 | 0.45098039215686275 24 | Red Component 25 | 0.6 26 | 27 | Ansi 10 Color 28 | 29 | Color Space 30 | sRGB 31 | Blue Component 32 | 0.5647058823529412 33 | Green Component 34 | 0.6274509803921569 35 | Red Component 36 | 0.47058823529411764 37 | 38 | Ansi 11 Color 39 | 40 | Color Space 41 | sRGB 42 | Blue Component 43 | 0.6313725490196078 44 | Green Component 45 | 0.7176470588235294 46 | Red Component 47 | 0.7490196078431373 48 | 49 | Ansi 12 Color 50 | 51 | Color Space 52 | sRGB 53 | Blue Component 54 | 0.6509803921568628 55 | Green Component 56 | 0.6235294117647059 57 | Red Component 58 | 0.48627450980392156 59 | 60 | Ansi 13 Color 61 | 62 | Color Space 63 | sRGB 64 | Blue Component 65 | 0.5254901960784314 66 | Green Component 67 | 0.611764705882353 68 | Red Component 69 | 0.7490196078431373 70 | 71 | Ansi 14 Color 72 | 73 | Color Space 74 | sRGB 75 | Blue Component 76 | 0.7294117647058823 77 | Green Component 78 | 0.7490196078431373 79 | Red Component 80 | 0.6 81 | 82 | Ansi 15 Color 83 | 84 | Color Space 85 | sRGB 86 | Blue Component 87 | 0.9411764705882353 88 | Green Component 89 | 0.9411764705882353 90 | Red Component 91 | 0.9411764705882353 92 | 93 | Ansi 2 Color 94 | 95 | Color Space 96 | sRGB 97 | Blue Component 98 | 0.5647058823529412 99 | Green Component 100 | 0.6274509803921569 101 | Red Component 102 | 0.47058823529411764 103 | 104 | Ansi 3 Color 105 | 106 | Color Space 107 | sRGB 108 | Blue Component 109 | 0.6313725490196078 110 | Green Component 111 | 0.7176470588235294 112 | Red Component 113 | 0.7490196078431373 114 | 115 | Ansi 4 Color 116 | 117 | Color Space 118 | sRGB 119 | Blue Component 120 | 0.6509803921568628 121 | Green Component 122 | 0.6235294117647059 123 | Red Component 124 | 0.48627450980392156 125 | 126 | Ansi 5 Color 127 | 128 | Color Space 129 | sRGB 130 | Blue Component 131 | 0.5254901960784314 132 | Green Component 133 | 0.611764705882353 134 | Red Component 135 | 0.7490196078431373 136 | 137 | Ansi 6 Color 138 | 139 | Color Space 140 | sRGB 141 | Blue Component 142 | 0.7294117647058823 143 | Green Component 144 | 0.7490196078431373 145 | Red Component 146 | 0.6 147 | 148 | Ansi 7 Color 149 | 150 | Color Space 151 | sRGB 152 | Blue Component 153 | 0.9411764705882353 154 | Green Component 155 | 0.9411764705882353 156 | Red Component 157 | 0.9411764705882353 158 | 159 | Ansi 8 Color 160 | 161 | Color Space 162 | sRGB 163 | Blue Component 164 | 0.5490196078431373 165 | Green Component 166 | 0.5137254901960784 167 | Red Component 168 | 0.4392156862745098 169 | 170 | Ansi 9 Color 171 | 172 | Color Space 173 | sRGB 174 | Blue Component 175 | 0.43137254901960786 176 | Green Component 177 | 0.45098039215686275 178 | Red Component 179 | 0.6 180 | 181 | Background Color 182 | 183 | Color Space 184 | sRGB 185 | Blue Component 186 | 0.2 187 | Green Component 188 | 0.17254901960784313 189 | Red Component 190 | 0.13725490196078433 191 | 192 | Bold Color 193 | 194 | Color Space 195 | sRGB 196 | Blue Component 197 | 0.9411764705882353 198 | Green Component 199 | 0.9411764705882353 200 | Red Component 201 | 0.9411764705882353 202 | 203 | Cursor Color 204 | 205 | Color Space 206 | sRGB 207 | Blue Component 208 | 0.9411764705882353 209 | Green Component 210 | 0.9411764705882353 211 | Red Component 212 | 0.9411764705882353 213 | 214 | Cursor Text Color 215 | 216 | Color Space 217 | sRGB 218 | Blue Component 219 | 0.2 220 | Green Component 221 | 0.17254901960784313 222 | Red Component 223 | 0.13725490196078433 224 | 225 | Foreground Color 226 | 227 | Color Space 228 | sRGB 229 | Blue Component 230 | 0.9411764705882353 231 | Green Component 232 | 0.9411764705882353 233 | Red Component 234 | 0.9411764705882353 235 | 236 | Selected Text Color 237 | 238 | Color Space 239 | sRGB 240 | Blue Component 241 | 0.9411764705882353 242 | Green Component 243 | 0.9411764705882353 244 | Red Component 245 | 0.9411764705882353 246 | 247 | Selection Color 248 | 249 | Color Space 250 | sRGB 251 | Blue Component 252 | 0.2 253 | Green Component 254 | 0.17254901960784313 255 | Red Component 256 | 0.13725490196078433 257 | 258 | 259 | 260 | -------------------------------------------------------------------------------- /putty/ryuuko.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings] 4 | "Colour0"="240,240,240" 5 | "Colour1"="240,240,240" 6 | "Colour2"="35,44,51" 7 | "Colour3"="35,44,51" 8 | "Colour4"="35,44,51" 9 | "Colour5"="240,240,240" 10 | "Colour6"="35,44,51" 11 | "Colour7"="112,131,140" 12 | "Colour8"="153,115,110" 13 | "Colour9"="153,115,110" 14 | "Colour10"="120,160,144" 15 | "Colour11"="120,160,144" 16 | "Colour12"="191,183,161" 17 | "Colour13"="191,183,161" 18 | "Colour14"="124,159,166" 19 | "Colour15"="124,159,166" 20 | "Colour16"="191,156,134" 21 | "Colour17"="191,156,134" 22 | "Colour18"="153,191,186" 23 | "Colour19"="153,191,186" 24 | "Colour20"="240,240,240" 25 | "Colour21"="240,240,240" 26 | -------------------------------------------------------------------------------- /termite/config: -------------------------------------------------------------------------------- 1 | [colors] 2 | 3 | # special 4 | foreground = #f0f0f0 5 | foreground_bold = #f0f0f0 6 | cursor = #f0f0f0 7 | background = #232c33 8 | 9 | # black 10 | color0 = #232c33 11 | color8 = #70838c 12 | 13 | # red 14 | color1 = #99736e 15 | color9 = #99736e 16 | 17 | # green 18 | color2 = #78a090 19 | color10 = #78a090 20 | 21 | # yellow 22 | color3 = #bfb7a1 23 | color11 = #bfb7a1 24 | 25 | # blue 26 | color4 = #7c9fa6 27 | color12 = #7c9fa6 28 | 29 | # magenta 30 | color5 = #bf9c86 31 | color13 = #bf9c86 32 | 33 | # cyan 34 | color6 = #99bfba 35 | color14 = #99bfba 36 | 37 | # white 38 | color7 = #f0f0f0 39 | color15 = #f0f0f0 40 | -------------------------------------------------------------------------------- /xfce4-terminal/terminalrc: -------------------------------------------------------------------------------- 1 | [Configuration] 2 | ColorCursor=#f0f0f0f0f0f0 3 | ColorForeground=#f0f0f0f0f0f0 4 | ColorBackground=#23232c2c3333 5 | ColorPalette=#23232c2c3333;#999973736e6e;#7878a0a09090;#bfbfb7b7a1a1;#7c7c9f9fa6a6;#bfbf9c9c8686;#9999bfbfbaba;#f0f0f0f0f0f0;#707083838c8c;#999973736e6e;#7878a0a09090;#bfbfb7b7a1a1;#7c7c9f9fa6a6;#bfbf9c9c8686;#9999bfbfbaba;#f0f0f0f0f0f0 6 | -------------------------------------------------------------------------------- /xresources/.Xresources: -------------------------------------------------------------------------------- 1 | ! special 2 | *.foreground: #f0f0f0 3 | *.background: #232c33 4 | *.cursorColor: #f0f0f0 5 | 6 | ! black 7 | ! Second black is grey 8 | *.color0: #232c33 9 | *.color8: #70838c 10 | 11 | ! red 12 | *.color1: #99736e 13 | *.color9: #99736e 14 | 15 | ! green 16 | *.color2: #78a090 17 | *.color10: #78a090 18 | 19 | ! yellow 20 | *.color3: #bfb7a1 21 | *.color11: #bfb7a1 22 | 23 | ! blue 24 | *.color4: #7c9fa6 25 | *.color12: #7c9fa6 26 | 27 | ! magenta 28 | *.color5: #BF9C86 29 | *.color13: #BF9C86 30 | 31 | ! cyan 32 | *.color6: #99BFBA 33 | *.color14: #99BFBA 34 | 35 | ! white 36 | *.color7: #f0f0f0 37 | *.color15: #f0f0f0 38 | --------------------------------------------------------------------------------