├── .gitignore ├── .gitkeep ├── Makefile ├── README.md ├── atom ├── base16-oceanicnext-dark-base.less ├── base16-oceanicnext-dark-syntax-variables.less ├── base16-oceanicnext-light-base.less └── base16-oceanicnext-light-syntax-variables.less ├── base16-oceanic-next.yml ├── bbedit ├── base16-oceanicnext.dark.bbcolors └── base16-oceanicnext.light.bbcolors ├── chrome-devtools ├── base16-oceanicnext.dark.css └── base16-oceanicnext.light.css ├── codemirror ├── base16-oceanicnext-dark.css └── base16-oceanicnext-light.css ├── colors ├── conemu └── base16-oceanicnext.conemu.xml ├── connectbot ├── base16-oceanicnext.dark.16.sql ├── base16-oceanicnext.dark.256.sql ├── base16-oceanicnext.light.16.sql └── base16-oceanicnext.light.256.sql ├── console2 ├── base16-oceanicnext.256.console.xml └── base16-oceanicnext.console.xml ├── drracket └── base16-oceanicnext.info.rkt ├── emacs ├── base16-oceanicnext-dark-theme.el └── base16-oceanicnext-light-theme.el ├── geany ├── base16-oceanicnext.dark.conf └── base16-oceanicnext.light.conf ├── gedit ├── base16-oceanicnext.dark.xml └── base16-oceanicnext.light.xml ├── gimp-palette └── base16-oceanicnext.gpl ├── gnome-terminal ├── base16-oceanicnext.dark.sh └── base16-oceanicnext.light.sh ├── guake ├── base16-oceanicnext.dark.sh └── base16-oceanicnext.light.sh ├── highlight.js ├── base16-oceanicnext.dark.css └── base16-oceanicnext.light.css ├── highlighting-kate ├── base16-oceanicnext.dark.css └── base16-oceanicnext.light.css ├── idea ├── base16-oceanicnext.dark.icls └── base16-oceanicnext.light.icls ├── ipython-notebook ├── base16-oceanicnext-dark.css └── base16-oceanicnext-light.css ├── iterm2 ├── base16-oceanicnext.dark.256.itermcolors ├── base16-oceanicnext.dark.itermcolors ├── base16-oceanicnext.light.256.itermcolors └── base16-oceanicnext.light.itermcolors ├── konsole ├── base16-oceanicnext.colorscheme ├── base16-oceanicnext.html └── base16-oceanicnext.scheme ├── mate-terminal ├── base16-oceanicnext.dark.sh └── base16-oceanicnext.light.sh ├── mintty ├── base16-oceanicnext.dark.256.minttyrc └── base16-oceanicnext.minttyrc ├── mmdc2 ├── base16-oceanicnext-dark.style └── base16-oceanicnext-light.style ├── mobaxterm └── base16-oceanicnext.dark ├── monodevelop ├── base16-oceanicnext.dark.xml └── base16-oceanicnext.light.xml ├── mou ├── base16-oceanicnext.dark+.txt ├── base16-oceanicnext.dark.txt ├── base16-oceanicnext.light+.txt └── base16-oceanicnext.light.txt ├── notepad-plus-plus ├── base16-oceanicnext.dark.xml └── base16-oceanicnext.light.xml ├── package.json ├── pantheon-terminal ├── base16-oceanicnext.dark.sh └── base16-oceanicnext.light.sh ├── prettify.js ├── base16-oceanicnext.dark.css └── base16-oceanicnext.light.css ├── preview.png ├── preview ├── base16-oceanicnext.html └── base16-oceanicnext.svg ├── prism ├── base16-oceanicnext.dark.css └── base16-oceanicnext.light.css ├── putty └── base16-oceanicnext.reg ├── pygments ├── base16-oceanicnext.dark.css ├── base16-oceanicnext.dark.py ├── base16-oceanicnext.light.css └── base16-oceanicnext.light.py ├── qtcreator └── base16-oceanicnext.dark.xml ├── rainbow ├── base16-oceanicnext.dark.css └── base16-oceanicnext.light.css ├── rouge └── base16-oceanicnext.rb ├── secure-shell ├── base16-oceanicnext.dark.prefs.js └── base16-oceanicnext.light.prefs.js ├── shell ├── base16-oceanicnext.dark.sh └── base16-oceanicnext.light.sh ├── terminal-app ├── base16-oceanicnext.dark.256.terminal ├── base16-oceanicnext.dark.terminal └── base16-oceanicnext.light.terminal ├── terminator ├── base16-oceanicnext.dark.config └── base16-oceanicnext.light.config ├── termite ├── base16-oceanicnext.dark.config └── base16-oceanicnext.light.config ├── textadept ├── base16-oceanicnext-dark.lua └── base16-oceanicnext-light.lua ├── textmate ├── base16-oceanicnext.dark.tmTheme └── base16-oceanicnext.light.tmTheme ├── vconsole ├── base16-oceanicnext.dark.sh └── base16-oceanicnext.light.sh ├── vim └── base16-oceanicnext.vim ├── visual-studio ├── base16-oceanicnext.dark.vssettings └── base16-oceanicnext.light.vssettings ├── windows-command-prompt └── base16-oceanicnext.reg ├── xcode4 ├── base16-oceanicnext.dark.dvtcolortheme └── base16-oceanicnext.light.dvtcolortheme ├── xfce4-terminal ├── base16-oceanicnext.dark.16.terminalrc └── base16-oceanicnext.dark.terminalrc ├── xresources ├── base16-oceanicnext.dark.256.xresources ├── base16-oceanicnext.dark.xresources ├── base16-oceanicnext.light.256.xresources └── base16-oceanicnext.light.xresources └── zathura ├── base16-oceanicnext.zathurarc-dark └── base16-oceanicnext.zathurarc-light /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | base16-builder 3 | node_modules 4 | -------------------------------------------------------------------------------- /.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbinnssmith/base16-oceanic-next/7c90e3978c14d16022ffab98474d9b8f3b2f6a59/.gitkeep -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | NAME = base16-oceanic-next 2 | PREVIEW = base16-oceanicnext.html 3 | BASE16 = ./base16-builder/base16 4 | PAGERES = ./node_modules/.bin/pageres 5 | 6 | default: build colors preview.png 7 | 8 | node_modules: 9 | @npm install 10 | 11 | base16-builder: 12 | @rm -rf base16-builder 13 | @git clone https://github.com/chriskempson/base16-builder.git 14 | 15 | colors: build 16 | @ln -sf vim $@ 17 | 18 | preview.png: build node_modules 19 | @$(PAGERES) --selector 'body > div > pre' --filename preview preview/$(PREVIEW) 1600x1200 20 | 21 | clean: 22 | @find . -type d ! -path '*/\.*' ! -path '\.' -print0 | xargs -0 rm -rf 23 | @rm -rf colors preview.png 24 | 25 | build: $(NAME).yml base16-builder 26 | @$(BASE16) -s $(NAME).yml 27 | @cp -R ./base16-builder/output/ . 28 | 29 | .PHONY: build clean 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This project generates the [Oceanic Next](https://github.com/voronianski/oceanic-next-color-scheme) color scheme 2 | for a variety of text editors using [base16-builder](https://github.com/chriskempson/base16-builder). 3 | 4 | Take a look! 5 | 6 | ![Preview of Color Scheme](./preview.png) 7 | 8 | Building: 9 | 10 | To build, you'll need node, npm, and GNU Make. 11 | 12 | Just run `make` to generate the build output. For convenience, the build output is checked in. To clear 13 | it out, run `make clean`. That's it! 14 | 15 | ## LICENSE 16 | MIT 17 | 18 | Original oceanic-next theme is from Dmitri Voronianski and is also licensed MIT. 19 | -------------------------------------------------------------------------------- /atom/base16-oceanicnext-dark-base.less: -------------------------------------------------------------------------------- 1 | // Atom template by Jan T. Sott (https://github.com/idleberg/) 2 | // Base16 scheme and Base16 Builder by Chris Kempson (https://github.com/chriskempson) 3 | 4 | @import "base16-oceanicnext-dark-syntax-variables.less"; 5 | atom-text-editor, // <- remove when Shadow DOM can't be disabled 6 | :host { 7 | color: @syntax-text-color; 8 | background-color: @syntax-background-color; 9 | .gutter { 10 | color: @syntax-gutter-text-color; 11 | background-color: @syntax-gutter-background-color; 12 | } 13 | 14 | .gutter .line-number.cursor-line { 15 | color: @syntax-gutter-text-color-selected; 16 | background-color: @syntax-gutter-background-color-selected; 17 | } 18 | 19 | .gutter .line-number.cursor-line-no-selection { 20 | color: @syntax-gutter-text-color-selected; 21 | } 22 | 23 | .wrap-guide { 24 | color: @syntax-wrap-guide-color; 25 | } 26 | 27 | .indent-guide { 28 | color: @syntax-indent-guide-color; 29 | } 30 | 31 | .invisible-character { 32 | color: @syntax-invisible-character-color; 33 | } 34 | 35 | .search-results .marker .region { 36 | background-color: transparent; 37 | border: @syntax-result-marker-color; 38 | } 39 | 40 | .search-results .marker.current-result .region { 41 | border: @syntax-result-marker-color-selected; 42 | } 43 | 44 | .cursor { 45 | border-color: @syntax-cursor-color; 46 | } 47 | 48 | .selection .region { 49 | background-color: @syntax-selection-color; 50 | } 51 | 52 | .line-number.cursor-line-no-selection, .line.cursor-line { 53 | background-color: rgba(80, 80, 80, 0.33); 54 | } 55 | 56 | } 57 | 58 | .variable.parameter.function { 59 | color: #C0C5CE; 60 | } 61 | 62 | .comment, .punctuation.definition.comment { 63 | color: #65737E; 64 | } 65 | 66 | .punctuation.definition.string, .punctuation.definition.variable, .punctuation.definition.string, .punctuation.definition.parameters, .punctuation.definition.string, .punctuation.definition.array { 67 | color: #C0C5CE; 68 | } 69 | 70 | .none { 71 | color: #C0C5CE; 72 | } 73 | 74 | .keyword.operator { 75 | color: #C0C5CE; 76 | } 77 | 78 | .keyword { 79 | color: #C594C5; 80 | } 81 | 82 | .variable { 83 | color: #EC5f67; 84 | } 85 | 86 | .entity.name.function, .meta.require, .support.function.any-method { 87 | color: #6699CC; 88 | } 89 | 90 | .support.class, .entity.name.class, .entity.name.type.class { 91 | color: #FAC863; 92 | } 93 | 94 | .meta.class { 95 | color: #D8DEE9; 96 | } 97 | 98 | .keyword.other.special-method { 99 | color: #6699CC; 100 | } 101 | 102 | .storage { 103 | color: #C594C5; 104 | } 105 | 106 | .support.function { 107 | color: #5FB3B3; 108 | } 109 | 110 | .string, .constant.other.symbol, .entity.other.inherited-class { 111 | color: #99C794; 112 | } 113 | 114 | .constant.numeric { 115 | color: #F99157; 116 | } 117 | 118 | .none { 119 | color: #F99157; 120 | } 121 | 122 | .none { 123 | color: #F99157; 124 | } 125 | 126 | .constant { 127 | color: #F99157; 128 | } 129 | 130 | .entity.name.tag { 131 | color: #EC5f67; 132 | } 133 | 134 | .entity.other.attribute-name { 135 | color: #F99157; 136 | } 137 | 138 | .entity.other.attribute-name.id, .punctuation.definition.entity { 139 | color: #6699CC; 140 | } 141 | 142 | .meta.selector { 143 | color: #C594C5; 144 | } 145 | 146 | .none { 147 | color: #F99157; 148 | } 149 | 150 | .markup.heading .punctuation.definition.heading, .entity.name.section { 151 | color: #6699CC; 152 | } 153 | 154 | .keyword.other.unit { 155 | color: #F99157; 156 | } 157 | 158 | .markup.bold, .punctuation.definition.bold { 159 | font-weight: bold; 160 | color: #FAC863; 161 | } 162 | 163 | .markup.italic, .punctuation.definition.italic { 164 | font-style: italic; 165 | color: #C594C5; 166 | } 167 | 168 | .markup.raw.inline { 169 | color: #99C794; 170 | } 171 | 172 | .string.other.link { 173 | color: #EC5f67; 174 | } 175 | 176 | .meta.link { 177 | color: #F99157; 178 | } 179 | 180 | .markup.list { 181 | color: #EC5f67; 182 | } 183 | 184 | .markup.quote { 185 | color: #F99157; 186 | } 187 | 188 | .meta.separator { 189 | color: #C0C5CE; 190 | background-color: #4F5B66; 191 | } 192 | 193 | .markup.inserted { 194 | color: #99C794; 195 | } 196 | 197 | .markup.deleted { 198 | color: #EC5f67; 199 | } 200 | 201 | .markup.changed { 202 | color: #C594C5; 203 | } 204 | 205 | .constant.other.color { 206 | color: #5FB3B3; 207 | } 208 | 209 | .string.regexp { 210 | color: #5FB3B3; 211 | } 212 | 213 | .constant.character.escape { 214 | color: #5FB3B3; 215 | } 216 | 217 | .punctuation.section.embedded, .variable.interpolation { 218 | color: #AB7967; 219 | } 220 | 221 | .invalid.illegal { 222 | color: #1B2B34; 223 | background-color: #EC5f67; 224 | } 225 | -------------------------------------------------------------------------------- /atom/base16-oceanicnext-dark-syntax-variables.less: -------------------------------------------------------------------------------- 1 | // Atom template by Jan T. Sott (https://github.com/idleberg/) 2 | // Base16 scheme and Base16 Builder by Chris Kempson (https://github.com/chriskempson) 3 | 4 | // This defines all syntax variables that syntax themes must implement when they 5 | // include a syntax-variables.less file. 6 | 7 | // General colors 8 | @syntax-text-color: #C0C5CE; 9 | @syntax-cursor-color: #C0C5CE; 10 | @syntax-selection-color: #4F5B66; 11 | @syntax-background-color: #1B2B34; 12 | 13 | // Guide colors 14 | @syntax-wrap-guide-color: #65737E; 15 | @syntax-indent-guide-color: #65737E; 16 | @syntax-invisible-character-color: #65737E; 17 | 18 | // For find and replace markers 19 | @syntax-result-marker-color: #65737E; 20 | @syntax-result-marker-color-selected: #C0C5CE; 21 | 22 | // Gutter colors 23 | @syntax-gutter-text-color: #C0C5CE; 24 | @syntax-gutter-text-color-selected: #C0C5CE; 25 | @syntax-gutter-background-color: #1B2B34; 26 | @syntax-gutter-background-color-selected: rgba(80, 80, 80, 0.33); 27 | 28 | // For git diff info. i.e. in the gutter 29 | // These are static and were not extracted from your textmate theme 30 | @syntax-color-renamed: #6699CC; 31 | @syntax-color-added: #99C794; 32 | @syntax-color-modified: #FAC863; 33 | @syntax-color-removed: #EC5f67; -------------------------------------------------------------------------------- /atom/base16-oceanicnext-light-base.less: -------------------------------------------------------------------------------- 1 | // Atom template by Jan T. Sott (https://github.com/idleberg/) 2 | // Base16 scheme and Base16 Builder by Chris Kempson (https://github.com/chriskempson) 3 | 4 | @import "base16-oceanicnext-light-syntax-variables.less"; 5 | 6 | atom-text-editor, // <- remove when Shadow DOM can't be disabled 7 | :host { 8 | color: @syntax-text-color; 9 | background-color: @syntax-background-color; 10 | .gutter { 11 | color: @syntax-gutter-text-color; 12 | background-color: @syntax-gutter-background-color; 13 | } 14 | 15 | .gutter .line-number.cursor-line { 16 | color: @syntax-gutter-text-color-selected; 17 | background-color: @syntax-gutter-background-color-selected; 18 | } 19 | 20 | .gutter .line-number.cursor-line-no-selection { 21 | color: @syntax-gutter-text-color-selected; 22 | } 23 | 24 | .wrap-guide { 25 | color: @syntax-wrap-guide-color; 26 | } 27 | 28 | .indent-guide { 29 | color: @syntax-indent-guide-color; 30 | } 31 | 32 | .invisible-character { 33 | color: @syntax-invisible-character-color; 34 | } 35 | 36 | .search-results .marker .region { 37 | background-color: transparent; 38 | border: @syntax-result-marker-color; 39 | } 40 | 41 | .search-results .marker.current-result .region { 42 | border: @syntax-result-marker-color-selected; 43 | } 44 | 45 | .cursor { 46 | border-color: @syntax-cursor-color; 47 | } 48 | 49 | .selection .region { 50 | background-color: @syntax-selection-color; 51 | } 52 | 53 | .line-number.cursor-line-no-selection, .line.cursor-line { 54 | background-color: rgba(176, 176, 176, 0.33); 55 | } 56 | 57 | } 58 | 59 | .variable.parameter.function { 60 | color: #4F5B66; 61 | } 62 | 63 | .comment, .punctuation.definition.comment { 64 | color: #A7ADBA; 65 | } 66 | 67 | .punctuation.definition.string, .punctuation.definition.variable, .punctuation.definition.string, .punctuation.definition.parameters, .punctuation.definition.string, .punctuation.definition.array { 68 | color: #4F5B66; 69 | } 70 | 71 | .none { 72 | color: #4F5B66; 73 | } 74 | 75 | .keyword.operator { 76 | color: #4F5B66; 77 | } 78 | 79 | .keyword { 80 | color: #C594C5; 81 | } 82 | 83 | .variable { 84 | color: #EC5f67; 85 | } 86 | 87 | .entity.name.function, .meta.require, .support.function.any-method { 88 | color: #6699CC; 89 | } 90 | 91 | .support.class, .entity.name.class, .entity.name.type.class { 92 | color: #F99157; 93 | } 94 | 95 | .meta.class { 96 | color: #343D46; 97 | } 98 | 99 | .keyword.other.special-method { 100 | color: #6699CC; 101 | } 102 | 103 | .storage { 104 | color: #C594C5; 105 | } 106 | 107 | .support.function { 108 | color: #5FB3B3; 109 | } 110 | 111 | .string, .constant.other.symbol, .entity.other.inherited-class { 112 | color: #99C794; 113 | } 114 | 115 | .constant.numeric { 116 | color: #F99157; 117 | } 118 | 119 | .none { 120 | color: #F99157; 121 | } 122 | 123 | .none { 124 | color: #F99157; 125 | } 126 | 127 | .constant { 128 | color: #F99157; 129 | } 130 | 131 | .entity.name.tag { 132 | color: #EC5f67; 133 | } 134 | 135 | .entity.other.attribute-name { 136 | color: #F99157; 137 | } 138 | 139 | .entity.other.attribute-name.id, .punctuation.definition.entity { 140 | color: #6699CC; 141 | } 142 | 143 | .meta.selector { 144 | color: #C594C5; 145 | } 146 | 147 | .none { 148 | color: #F99157; 149 | } 150 | 151 | .markup.heading .punctuation.definition.heading, .entity.name.section { 152 | color: #6699CC; 153 | } 154 | 155 | .keyword.other.unit { 156 | color: #F99157; 157 | } 158 | 159 | .markup.bold, .punctuation.definition.bold { 160 | font-weight: bold; 161 | color: #F99157; 162 | } 163 | 164 | .markup.italic, .punctuation.definition.italic { 165 | font-style: italic; 166 | color: #C594C5; 167 | } 168 | 169 | .markup.raw.inline { 170 | color: #99C794; 171 | } 172 | 173 | .string.other.link { 174 | color: #EC5f67; 175 | } 176 | 177 | .meta.link { 178 | color: #F99157; 179 | } 180 | 181 | .markup.list { 182 | color: #EC5f67; 183 | } 184 | 185 | .markup.quote { 186 | color: #F99157; 187 | } 188 | 189 | .meta.separator { 190 | color: #4F5B66; 191 | background-color: #CDD3DE; 192 | } 193 | 194 | .markup.inserted { 195 | color: #99C794; 196 | } 197 | 198 | .markup.deleted { 199 | color: #EC5f67; 200 | } 201 | 202 | .markup.changed { 203 | color: #C594C5; 204 | } 205 | 206 | .constant.other.color { 207 | color: #5FB3B3; 208 | } 209 | 210 | .string.regexp { 211 | color: #5FB3B3; 212 | } 213 | 214 | .constant.character.escape { 215 | color: #5FB3B3; 216 | } 217 | 218 | .punctuation.section.embedded, .variable.interpolation { 219 | color: #AB7967; 220 | } 221 | 222 | .invalid.illegal { 223 | color: #D8DEE9; 224 | background-color: #EC5f67; 225 | } 226 | -------------------------------------------------------------------------------- /atom/base16-oceanicnext-light-syntax-variables.less: -------------------------------------------------------------------------------- 1 | // This defines all syntax variables that syntax themes must implement when they 2 | // include a syntax-variables.less file. 3 | 4 | // General colors 5 | @syntax-text-color: #4F5B66; 6 | @syntax-cursor-color: #4F5B66; 7 | @syntax-selection-color: #CDD3DE; 8 | @syntax-background-color: #D8DEE9; 9 | 10 | // Guide colors 11 | @syntax-wrap-guide-color: #CDD3DE; 12 | @syntax-indent-guide-color: #CDD3DE; 13 | @syntax-invisible-character-color: #CDD3DE; 14 | 15 | // For find and replace markers 16 | @syntax-result-marker-color: #CDD3DE; 17 | @syntax-result-marker-color-selected: #4F5B66; 18 | 19 | // Gutter colors 20 | @syntax-gutter-text-color: #4F5B66; 21 | @syntax-gutter-text-color-selected: #4F5B66; 22 | @syntax-gutter-background-color: #D8DEE9; 23 | @syntax-gutter-background-color-selected: rgba(176, 176, 176, 0.33); 24 | 25 | // For git diff info. i.e. in the gutter 26 | // These are static and were not extracted from your textmate theme 27 | @syntax-color-renamed: #6699CC; 28 | @syntax-color-added: #99C794; 29 | @syntax-color-modified: #FAC863; 30 | @syntax-color-removed: #EC5f67; -------------------------------------------------------------------------------- /base16-oceanic-next.yml: -------------------------------------------------------------------------------- 1 | scheme: "Oceanic Next" 2 | author: "Dmitri Voronianski (http://pixelhunter.me)" 3 | 4 | base00: "1B2B34" 5 | base01: "343D46" 6 | base02: "4F5B66" 7 | base03: "65737E" 8 | base04: "A7ADBA" 9 | base05: "C0C5CE" 10 | base06: "CDD3DE" 11 | base07: "D8DEE9" 12 | base08: "EC5f67" 13 | base09: "F99157" 14 | base0A: "FAC863" 15 | base0B: "99C794" 16 | base0C: "5FB3B3" 17 | base0D: "6699CC" 18 | base0E: "C594C5" 19 | base0F: "AB7967" 20 | -------------------------------------------------------------------------------- /bbedit/base16-oceanicnext.dark.bbcolors: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BackgroundColor 6 | rgba(0.10588235294117647,0.16862745098039217,0.20392156862745098,1.000000) 7 | CommentsColor 8 | rgba(0.396078431372549,0.45098039215686275,0.49411764705882355,1.000000) 9 | CtagsIdentifierColor 10 | rgba(0.9803921568627451,0.7843137254901961,0.38823529411764707,1.000000) 11 | ForegroundColor 12 | rgba(0.7529411764705882,0.7725490196078432,0.807843137254902,1.000000) 13 | HTMLAnchorColor 14 | rgba(0.37254901960784315,0.7019607843137254,0.7019607843137254,1.000000) 15 | HTMLAttributeNameColor 16 | rgba(0.9764705882352941,0.5686274509803921,0.3411764705882353,1.000000) 17 | HTMLAttributeValueColor 18 | rgba(0.6,0.7803921568627451,0.5803921568627451,1.000000) 19 | HTMLImageColor 20 | rgba(0.37254901960784315,0.7019607843137254,0.7019607843137254,1.000000) 21 | HTMLProcessingDirectiveColor 22 | rgba(0.6705882352941176,0.4745098039215686,0.403921568627451,1.000000) 23 | HTMLTagColor 24 | rgba(0.9254901960784314,0.37254901960784315,0.403921568627451,1.000000) 25 | HighlightInsertionPoint 26 | 27 | InsertionPointLineHighlightColor 28 | rgba(0.30980392156862746,0.3568627450980392,0.4,1.000000) 29 | InvisibleOthersColor 30 | rgba(0.396078431372549,0.45098039215686275,0.49411764705882355,1.000000) 31 | InvisibleSpacesColor 32 | rgba(0.396078431372549,0.45098039215686275,0.49411764705882355,1.000000) 33 | KeywordsColor 34 | rgba(0.7725490196078432,0.5803921568627451,0.7725490196078432,1.000000) 35 | NumericConstantColor 36 | rgba(0.9764705882352941,0.5686274509803921,0.3411764705882353,1.000000) 37 | PredefinedNamesColor 38 | rgba(0.37254901960784315,0.7019607843137254,0.7019607843137254,1.000000) 39 | PrimaryHighlightColor 40 | rgba(0.30980392156862746,0.3568627450980392,0.4,1.000000) 41 | PythonDecoratorColor 42 | rgba(0.37254901960784315,0.7019607843137254,0.7019607843137254,1.000000) 43 | SecondaryHighlightColor 44 | rgba(0.6549019607843137,0.6784313725490196,0.7294117647058823,1.000000) 45 | SpellingColor 46 | rgba(0.9254901960784314,0.37254901960784315,0.403921568627451,1.000000) 47 | StringColor 48 | rgba(0.6,0.7803921568627451,0.5803921568627451,1.000000) 49 | UseCustomHighlightColor 50 | 51 | VariablesColor 52 | rgba(0.9254901960784314,0.37254901960784315,0.403921568627451,1.000000) 53 | 54 | -------------------------------------------------------------------------------- /bbedit/base16-oceanicnext.light.bbcolors: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BackgroundColor 6 | rgba(0.8470588235294118,0.8705882352941177,0.9137254901960784,1.000000) 7 | CommentsColor 8 | rgba(0.6549019607843137,0.6784313725490196,0.7294117647058823,1.000000) 9 | CtagsIdentifierColor 10 | rgba(0.9803921568627451,0.7843137254901961,0.38823529411764707,1.000000) 11 | ForegroundColor 12 | rgba(0.30980392156862746,0.3568627450980392,0.4,1.000000) 13 | HTMLAnchorColor 14 | rgba(0.37254901960784315,0.7019607843137254,0.7019607843137254,1.000000) 15 | HTMLAttributeNameColor 16 | rgba(0.9764705882352941,0.5686274509803921,0.3411764705882353,1.000000) 17 | HTMLAttributeValueColor 18 | rgba(0.6,0.7803921568627451,0.5803921568627451,1.000000) 19 | HTMLImageColor 20 | rgba(0.37254901960784315,0.7019607843137254,0.7019607843137254,1.000000) 21 | HTMLProcessingDirectiveColor 22 | rgba(0.6705882352941176,0.4745098039215686,0.403921568627451,1.000000) 23 | HTMLTagColor 24 | rgba(0.9254901960784314,0.37254901960784315,0.403921568627451,1.000000) 25 | HighlightInsertionPoint 26 | 27 | InsertionPointLineHighlightColor 28 | rgba(0.7529411764705882,0.7725490196078432,0.807843137254902,1.000000) 29 | InvisibleOthersColor 30 | rgba(0.6549019607843137,0.6784313725490196,0.7294117647058823,1.000000) 31 | InvisibleSpacesColor 32 | rgba(0.6549019607843137,0.6784313725490196,0.7294117647058823,1.000000) 33 | KeywordsColor 34 | rgba(0.7725490196078432,0.5803921568627451,0.7725490196078432,1.000000) 35 | NumericConstantColor 36 | rgba(0.9764705882352941,0.5686274509803921,0.3411764705882353,1.000000) 37 | PredefinedNamesColor 38 | rgba(0.37254901960784315,0.7019607843137254,0.7019607843137254,1.000000) 39 | PrimaryHighlightColor 40 | rgba(0.7529411764705882,0.7725490196078432,0.807843137254902,1.000000) 41 | PythonDecoratorColor 42 | rgba(0.37254901960784315,0.7019607843137254,0.7019607843137254,1.000000) 43 | SecondaryHighlightColor 44 | rgba(0.396078431372549,0.45098039215686275,0.49411764705882355,1.000000) 45 | SpellingColor 46 | rgba(0.9254901960784314,0.37254901960784315,0.403921568627451,1.000000) 47 | StringColor 48 | rgba(0.6,0.7803921568627451,0.5803921568627451,1.000000) 49 | UseCustomHighlightColor 50 | 51 | VariablesColor 52 | rgba(0.9254901960784314,0.37254901960784315,0.403921568627451,1.000000) 53 | 54 | -------------------------------------------------------------------------------- /codemirror/base16-oceanicnext-dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Oceanic Next Dark 4 | Author: Dmitri Voronianski (http://pixelhunter.me) 5 | 6 | CodeMirror template by Jan T. Sott (https://github.com/idleberg) 7 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 8 | 9 | */ 10 | 11 | .cm-s-base16-oceanicnext-dark.CodeMirror {background: #1B2B34; color: #CDD3DE;} 12 | .cm-s-base16-oceanicnext-dark div.CodeMirror-selected {background: #343D46 !important;} 13 | .cm-s-base16-oceanicnext-dark .CodeMirror-gutters {background: #1B2B34; border-right: 0px;} 14 | .cm-s-base16-oceanicnext-dark .CodeMirror-linenumber {color: #65737E;} 15 | .cm-s-base16-oceanicnext-dark .CodeMirror-cursor {border-left: 1px solid #A7ADBA !important;} 16 | 17 | .cm-s-base16-oceanicnext-dark span.cm-comment {color: #AB7967;} 18 | .cm-s-base16-oceanicnext-dark span.cm-atom {color: #C594C5;} 19 | .cm-s-base16-oceanicnext-dark span.cm-number {color: #C594C5;} 20 | 21 | .cm-s-base16-oceanicnext-dark span.cm-property, .cm-s-base16-oceanicnext-dark span.cm-attribute {color: #99C794;} 22 | .cm-s-base16-oceanicnext-dark span.cm-keyword {color: #EC5f67;} 23 | .cm-s-base16-oceanicnext-dark span.cm-string {color: #FAC863;} 24 | 25 | .cm-s-base16-oceanicnext-dark span.cm-variable {color: #99C794;} 26 | .cm-s-base16-oceanicnext-dark span.cm-variable-2 {color: #6699CC;} 27 | .cm-s-base16-oceanicnext-dark span.cm-def {color: #F99157;} 28 | .cm-s-base16-oceanicnext-dark span.cm-error {background: #EC5f67; color: #A7ADBA;} 29 | .cm-s-base16-oceanicnext-dark span.cm-bracket {color: #CDD3DE;} 30 | .cm-s-base16-oceanicnext-dark span.cm-tag {color: #EC5f67;} 31 | .cm-s-base16-oceanicnext-dark span.cm-link {color: #C594C5;} 32 | 33 | .cm-s-base16-oceanicnext-dark .CodeMirror-matchingbracket { text-decoration: underline; color: white !important;} 34 | -------------------------------------------------------------------------------- /codemirror/base16-oceanicnext-light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Name: Base16 Oceanic Next Light 4 | Author: Dmitri Voronianski (http://pixelhunter.me) 5 | 6 | CodeMirror template by Jan T. Sott (https://github.com/idleberg) 7 | Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) 8 | 9 | */ 10 | 11 | .cm-s-base16-oceanicnext-light.CodeMirror {background: #D8DEE9; color: #343D46;} 12 | .cm-s-base16-oceanicnext-light div.CodeMirror-selected {background: #CDD3DE !important;} 13 | .cm-s-base16-oceanicnext-light .CodeMirror-gutters {background: #D8DEE9; border-right: 0px;} 14 | .cm-s-base16-oceanicnext-light .CodeMirror-linenumber {color: #A7ADBA;} 15 | .cm-s-base16-oceanicnext-light .CodeMirror-cursor {border-left: 1px solid #65737E !important;} 16 | 17 | .cm-s-base16-oceanicnext-light span.cm-comment {color: #AB7967;} 18 | .cm-s-base16-oceanicnext-light span.cm-atom {color: #C594C5;} 19 | .cm-s-base16-oceanicnext-light span.cm-number {color: #C594C5;} 20 | 21 | .cm-s-base16-oceanicnext-light span.cm-property, .cm-s-base16-oceanicnext-light span.cm-attribute {color: #99C794;} 22 | .cm-s-base16-oceanicnext-light span.cm-keyword {color: #EC5f67;} 23 | .cm-s-base16-oceanicnext-light span.cm-string {color: #FAC863;} 24 | 25 | .cm-s-base16-oceanicnext-light span.cm-variable {color: #99C794;} 26 | .cm-s-base16-oceanicnext-light span.cm-variable-2 {color: #6699CC;} 27 | .cm-s-base16-oceanicnext-light span.cm-def {color: #F99157;} 28 | .cm-s-base16-oceanicnext-light span.cm-error {background: #EC5f67; color: #65737E;} 29 | .cm-s-base16-oceanicnext-light span.cm-bracket {color: #343D46;} 30 | .cm-s-base16-oceanicnext-light span.cm-tag {color: #EC5f67;} 31 | .cm-s-base16-oceanicnext-light span.cm-link {color: #C594C5;} 32 | 33 | .cm-s-base16-oceanicnext-light .CodeMirror-matchingbracket { text-decoration: underline; color: white !important;} 34 | -------------------------------------------------------------------------------- /colors: -------------------------------------------------------------------------------- 1 | vim -------------------------------------------------------------------------------- /conemu/base16-oceanicnext.conemu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /connectbot/base16-oceanicnext.dark.16.sql: -------------------------------------------------------------------------------- 1 | UPDATE colors SET scheme = '' WHERE scheme = 0; 2 | 3 | INSERT INTO COLORS (number, value, scheme) VALUES (0 , -14996684 , 0); 4 | INSERT INTO COLORS (number, value, scheme) VALUES (1 , -1286297 , 0); 5 | INSERT INTO COLORS (number, value, scheme) VALUES (2 , -6699116 , 0); 6 | INSERT INTO COLORS (number, value, scheme) VALUES (3 , -341917 , 0); 7 | INSERT INTO COLORS (number, value, scheme) VALUES (4 , -10053172 , 0); 8 | INSERT INTO COLORS (number, value, scheme) VALUES (5 , -3828539 , 0); 9 | INSERT INTO COLORS (number, value, scheme) VALUES (6 , -10505293 , 0); 10 | INSERT INTO COLORS (number, value, scheme) VALUES (7 , -4143666 , 0); 11 | INSERT INTO COLORS (number, value, scheme) VALUES (8 , -10128514 , 0); 12 | INSERT INTO COLORS (number, value, scheme) VALUES (9 , -421545 , 0); 13 | INSERT INTO COLORS (number, value, scheme) VALUES (10 , -13353658 , 0); 14 | INSERT INTO COLORS (number, value, scheme) VALUES (11 , -11576474 , 0); 15 | INSERT INTO COLORS (number, value, scheme) VALUES (12 , -5788230 , 0); 16 | INSERT INTO COLORS (number, value, scheme) VALUES (13 , -3288098 , 0); 17 | INSERT INTO COLORS (number, value, scheme) VALUES (14 , -5539481 , 0); 18 | INSERT INTO COLORS (number, value, scheme) VALUES (15 , -2564375 , 0); 19 | 20 | UPDATE colorDefaults set fg=7, bg=0 WHERE scheme = 0; 21 | 22 | -------------------------------------------------------------------------------- /connectbot/base16-oceanicnext.dark.256.sql: -------------------------------------------------------------------------------- 1 | UPDATE colors SET scheme = '' WHERE scheme = 0; 2 | 3 | INSERT INTO COLORS (number, value, scheme) VALUES (0 , -14996684 , 0); 4 | INSERT INTO COLORS (number, value, scheme) VALUES (1 , -1286297 , 0); 5 | INSERT INTO COLORS (number, value, scheme) VALUES (2 , -6699116 , 0); 6 | INSERT INTO COLORS (number, value, scheme) VALUES (3 , -341917 , 0); 7 | INSERT INTO COLORS (number, value, scheme) VALUES (4 , -10053172 , 0); 8 | INSERT INTO COLORS (number, value, scheme) VALUES (5 , -3828539 , 0); 9 | INSERT INTO COLORS (number, value, scheme) VALUES (6 , -10505293 , 0); 10 | INSERT INTO COLORS (number, value, scheme) VALUES (7 , -4143666 , 0); 11 | INSERT INTO COLORS (number, value, scheme) VALUES (8 , -10128514 , 0); 12 | INSERT INTO COLORS (number, value, scheme) VALUES (9 , -1286297 , 0); 13 | INSERT INTO COLORS (number, value, scheme) VALUES (10 , -6699116 , 0); 14 | INSERT INTO COLORS (number, value, scheme) VALUES (11 , -341917 , 0); 15 | INSERT INTO COLORS (number, value, scheme) VALUES (12 , -10053172 , 0); 16 | INSERT INTO COLORS (number, value, scheme) VALUES (13 , -3828539 , 0); 17 | INSERT INTO COLORS (number, value, scheme) VALUES (14 , -10505293 , 0); 18 | INSERT INTO COLORS (number, value, scheme) VALUES (15 , -2564375 , 0); 19 | INSERT INTO COLORS (number, value, scheme) VALUES (16 , -421545 , 0); 20 | INSERT INTO COLORS (number, value, scheme) VALUES (17 , -5539481 , 0); 21 | INSERT INTO COLORS (number, value, scheme) VALUES (18 , -13353658 , 0); 22 | INSERT INTO COLORS (number, value, scheme) VALUES (19 , -11576474 , 0); 23 | INSERT INTO COLORS (number, value, scheme) VALUES (20 , -5788230 , 0); 24 | INSERT INTO COLORS (number, value, scheme) VALUES (21 , -3288098 , 0); 25 | 26 | UPDATE colorDefaults set fg=7, bg=0 WHERE scheme = 0; 27 | 28 | -------------------------------------------------------------------------------- /connectbot/base16-oceanicnext.light.16.sql: -------------------------------------------------------------------------------- 1 | UPDATE colors SET scheme = '' WHERE scheme = 0; 2 | 3 | INSERT INTO COLORS (number, value, scheme) VALUES (0 , -14996684 , 0); 4 | INSERT INTO COLORS (number, value, scheme) VALUES (1 , -1286297 , 0); 5 | INSERT INTO COLORS (number, value, scheme) VALUES (2 , -6699116 , 0); 6 | INSERT INTO COLORS (number, value, scheme) VALUES (3 , -341917 , 0); 7 | INSERT INTO COLORS (number, value, scheme) VALUES (4 , -10053172 , 0); 8 | INSERT INTO COLORS (number, value, scheme) VALUES (5 , -3828539 , 0); 9 | INSERT INTO COLORS (number, value, scheme) VALUES (6 , -10505293 , 0); 10 | INSERT INTO COLORS (number, value, scheme) VALUES (7 , -4143666 , 0); 11 | INSERT INTO COLORS (number, value, scheme) VALUES (8 , -10128514 , 0); 12 | INSERT INTO COLORS (number, value, scheme) VALUES (9 , -421545 , 0); 13 | INSERT INTO COLORS (number, value, scheme) VALUES (10 , -13353658 , 0); 14 | INSERT INTO COLORS (number, value, scheme) VALUES (11 , -11576474 , 0); 15 | INSERT INTO COLORS (number, value, scheme) VALUES (12 , -5788230 , 0); 16 | INSERT INTO COLORS (number, value, scheme) VALUES (13 , -3288098 , 0); 17 | INSERT INTO COLORS (number, value, scheme) VALUES (14 , -5539481 , 0); 18 | INSERT INTO COLORS (number, value, scheme) VALUES (15 , -2564375 , 0); 19 | 20 | UPDATE colorDefaults set fg=11, bg=15 WHERE scheme = 0; 21 | 22 | -------------------------------------------------------------------------------- /connectbot/base16-oceanicnext.light.256.sql: -------------------------------------------------------------------------------- 1 | UPDATE colors SET scheme = '' WHERE scheme = 0; 2 | 3 | INSERT INTO COLORS (number, value, scheme) VALUES (0 , -14996684 , 0); 4 | INSERT INTO COLORS (number, value, scheme) VALUES (1 , -1286297 , 0); 5 | INSERT INTO COLORS (number, value, scheme) VALUES (2 , -6699116 , 0); 6 | INSERT INTO COLORS (number, value, scheme) VALUES (3 , -341917 , 0); 7 | INSERT INTO COLORS (number, value, scheme) VALUES (4 , -10053172 , 0); 8 | INSERT INTO COLORS (number, value, scheme) VALUES (5 , -3828539 , 0); 9 | INSERT INTO COLORS (number, value, scheme) VALUES (6 , -10505293 , 0); 10 | INSERT INTO COLORS (number, value, scheme) VALUES (7 , -4143666 , 0); 11 | INSERT INTO COLORS (number, value, scheme) VALUES (8 , -10128514 , 0); 12 | INSERT INTO COLORS (number, value, scheme) VALUES (9 , -1286297 , 0); 13 | INSERT INTO COLORS (number, value, scheme) VALUES (10 , -6699116 , 0); 14 | INSERT INTO COLORS (number, value, scheme) VALUES (11 , -341917 , 0); 15 | INSERT INTO COLORS (number, value, scheme) VALUES (12 , -10053172 , 0); 16 | INSERT INTO COLORS (number, value, scheme) VALUES (13 , -3828539 , 0); 17 | INSERT INTO COLORS (number, value, scheme) VALUES (14 , -10505293 , 0); 18 | INSERT INTO COLORS (number, value, scheme) VALUES (15 , -2564375 , 0); 19 | INSERT INTO COLORS (number, value, scheme) VALUES (16 , -421545 , 0); 20 | INSERT INTO COLORS (number, value, scheme) VALUES (17 , -5539481 , 0); 21 | INSERT INTO COLORS (number, value, scheme) VALUES (18 , -13353658 , 0); 22 | INSERT INTO COLORS (number, value, scheme) VALUES (19 , -11576474 , 0); 23 | INSERT INTO COLORS (number, value, scheme) VALUES (20 , -5788230 , 0); 24 | INSERT INTO COLORS (number, value, scheme) VALUES (21 , -3288098 , 0); 25 | 26 | UPDATE colorDefaults set fg=19, bg=15 WHERE scheme = 0; 27 | 28 | -------------------------------------------------------------------------------- /console2/base16-oceanicnext.256.console.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /console2/base16-oceanicnext.console.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /drracket/base16-oceanicnext.info.rkt: -------------------------------------------------------------------------------- 1 | #lang info 2 | 3 | ;; Base16 Oceanic Next (https://github.com/chriskempson/base16) 4 | ;; Scheme: Dmitri Voronianski (http://pixelhunter.me) 5 | 6 | ;; pkg metadata 7 | (define deps '("base")) 8 | 9 | ;; color scheme 10 | (define base00 #(27 43 52)) 11 | (define base01 #(52 61 70)) 12 | (define base02 #(79 91 102)) 13 | (define base03 #(101 115 126)) 14 | (define base04 #(167 173 186)) 15 | (define base05 #(192 197 206)) 16 | (define base06 #(205 211 222)) 17 | (define base07 #(216 222 233)) 18 | (define base08 #(236 95 103)) 19 | (define base09 #(249 145 87)) 20 | (define base0A #(250 200 99)) 21 | (define base0B #(153 199 148)) 22 | (define base0C #(95 179 179)) 23 | (define base0D #(102 153 204)) 24 | (define base0E #(197 148 197)) 25 | (define base0F #(171 121 103)) 26 | 27 | (define framework:color-schemes 28 | `(#hash((name . "Base16 Oceanic Next Dark") 29 | (white-on-black-base? . #t) 30 | (colors 31 | . 32 | ((drracket:syncheck:matching-identifiers ,base03) 33 | (framework:basic-canvas-background ,base00) 34 | (framework:default-text-color ,base05) 35 | (framework:misspelled-text-color ,base08) 36 | (framework:paren-match-color ,base03) 37 | (drracket:check-syntax:both-obligation-style-pref ,base0F) 38 | (drracket:check-syntax:free-variable ,base0E) 39 | (drracket:check-syntax:imported ,base0D) 40 | (drracket:check-syntax:lexically-bound ,base0C) 41 | (drracket:check-syntax:my-obligation-style-pref ,base09) 42 | (drracket:check-syntax:set!d ,base0B) 43 | (drracket:check-syntax:their-obligation-style-pref ,base0A) 44 | (drracket:check-syntax:unk-obligation-style-pref ,base08) 45 | (drracket:check-syntax:unused-require ,base08) 46 | (drracket:read-eval-print-loop:error-color ,base08) 47 | (drracket:read-eval-print-loop:out-color ,base09) 48 | (drracket:read-eval-print-loop:value-color ,base0D) 49 | (framework:syntax-color:scheme:comment ,base03) 50 | (framework:syntax-color:scheme:constant ,base09) 51 | (framework:syntax-color:scheme:error ,base08) 52 | (framework:syntax-color:scheme:hash-colon-keyword ,base0C) 53 | (framework:syntax-color:scheme:keyword ,base0E) 54 | (framework:syntax-color:scheme:other ,base05) 55 | (framework:syntax-color:scheme:parenthesis ,base04) 56 | (framework:syntax-color:scheme:string ,base0B) 57 | (framework:syntax-color:scheme:symbol ,base0D) 58 | (framework:syntax-color:scheme:text ,base05) 59 | (plt:htdp:test-coverage-off ,base08) 60 | (plt:htdp:test-coverage-on ,base0B) 61 | (plt:module-language:test-coverage-off ,base08) 62 | (plt:module-language:test-coverage-on ,base0B)))) 63 | #hash((name . "Base16 Oceanic Next Light") 64 | (white-on-black-base? . #f) 65 | (colors 66 | . 67 | ((drracket:syncheck:matching-identifiers ,base03) 68 | (framework:basic-canvas-background ,base07) 69 | (framework:default-text-color ,base02) 70 | (framework:misspelled-text-color ,base08) 71 | (framework:paren-match-color ,base05) 72 | (drracket:check-syntax:both-obligation-style-pref ,base0F) 73 | (drracket:check-syntax:free-variable ,base0E) 74 | (drracket:check-syntax:imported ,base0D) 75 | (drracket:check-syntax:lexically-bound ,base0C) 76 | (drracket:check-syntax:my-obligation-style-pref ,base09) 77 | (drracket:check-syntax:set!d ,base0B) 78 | (drracket:check-syntax:their-obligation-style-pref ,base0B) 79 | (drracket:check-syntax:unk-obligation-style-pref ,base08) 80 | (drracket:check-syntax:unused-require ,base08) 81 | (drracket:read-eval-print-loop:error-color ,base08) 82 | (drracket:read-eval-print-loop:out-color ,base09) 83 | (drracket:read-eval-print-loop:value-color ,base0D) 84 | (framework:syntax-color:scheme:comment ,base03) 85 | (framework:syntax-color:scheme:constant ,base09) 86 | (framework:syntax-color:scheme:error ,base08) 87 | (framework:syntax-color:scheme:hash-colon-keyword ,base0C) 88 | (framework:syntax-color:scheme:keyword ,base0E) 89 | (framework:syntax-color:scheme:other ,base02) 90 | (framework:syntax-color:scheme:parenthesis ,base03) 91 | (framework:syntax-color:scheme:string ,base0B) 92 | (framework:syntax-color:scheme:symbol ,base0D) 93 | (framework:syntax-color:scheme:text ,base02) 94 | (plt:htdp:test-coverage-off ,base08) 95 | (plt:htdp:test-coverage-on ,base0B) 96 | (plt:module-language:test-coverage-off ,base08) 97 | (plt:module-language:test-coverage-on ,base0B)))))) 98 | -------------------------------------------------------------------------------- /geany/base16-oceanicnext.dark.conf: -------------------------------------------------------------------------------- 1 | # Geany Base16 Template 2 | # Rob Loach (http://robloach.net) 3 | # 4 | # Copyright (c) 2013 Rob Loach 5 | # 6 | # Permission is hereby granted, free of charge, to any person obtaining a copy 7 | # of this software and associated documentation files (the "Software"), to deal 8 | # in the Software without restriction, including without limitation the rights 9 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | # copies of the Software, and to permit persons to whom the Software is 11 | # furnished to do so, subject to the following conditions: 12 | # 13 | # The above copyright notice and this permission notice shall be included in all 14 | # copies or substantial portions of the Software. 15 | # 16 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | # SOFTWARE. 23 | 24 | [theme_info] 25 | name=Base16 Oceanic Next Dark 26 | description=Base16 Oceanic Next provides carefully chosen syntax highlighting and a default set of sixteen colors suitable for a wide range of applications. 27 | version=0.2.2 28 | author=Rob Loach (http://robloach.net) 29 | url=http://github.com/robloach/base16-geany 30 | 31 | [named_styles] 32 | default=#D8DEE9;#1B2B34;false;false 33 | error=#EC5f67 34 | 35 | # Editor Styles 36 | #------------------------------------------------------------------------------- 37 | selection=#A7ADBA;#65737E;false;true 38 | current_line=;#4F5B66;true;false 39 | brace_good=#FAC863;;true;false 40 | brace_bad=#EC5f67;#4F5B66;true;false 41 | margin_line_number=#65737E;#4F5B66;true;false 42 | margin_folding=#65737E 43 | fold_symbol_highlight=#343D46 44 | indent_guide=#4F5B66 45 | caret=#C0C5CE 46 | marker_line=#D8DEE9 47 | marker_search=#D8DEE9;#99C794;false;false 48 | marker_mark=#D8DEE9;#99C794; 49 | call_tips=#A7ADBA;;false;false 50 | white_space=#65737E;;true;false 51 | 52 | # Programming languages 53 | #------------------------------------------------------------------------------- 54 | comment=#A7ADBA 55 | comment_doc=#A7ADBA 56 | comment_line=#A7ADBA 57 | comment_line_doc=#A7ADBA 58 | comment_doc_keyword=#A7ADBA;;true;false 59 | comment_doc_keyword_error=#A7ADBA;;false;true 60 | 61 | number=#99C794 62 | number_1=#F99157 63 | number_2=#F99157 64 | 65 | type=#FAC863;;true 66 | # Person.rb = Person 67 | class=#FAC863;;true 68 | # Person.rb = initialize 69 | # PHP 70 | function=#6699CC;;false;false 71 | parameter=#CDD3DE 72 | 73 | keyword=#AB7967;;true;false 74 | # Person.rb = class, include, def, end, attr_accessor, etc 75 | # PHP = include_once(), if elseif else 76 | keyword_1=#C594C5;;false;false 77 | keyword_2=#F99157;;false;false 78 | keyword_3=#C0C5CE;;false;false 79 | keyword_4=#F99157;;false;true 80 | 81 | identifier=#C0C5CE;;false;false 82 | # Person.rb = ActiveModel::Conversion 83 | identifier_1=#C0C5CE;;false;false 84 | identifier_2=#C0C5CE;;false;false 85 | identifier_3=#6699CC;;true;false 86 | identifier_4=#C594C5;;false;false 87 | 88 | string=#F99157 89 | string_1=#99C794 90 | string_2=#99C794 91 | string_3=#C0C5CE 92 | string_4=#6699CC 93 | string_eol=#C594C5;;false;true 94 | 95 | character=string_1 96 | backtick=#FAC863 97 | here_doc=#FAC863 98 | scalar=#FAC863 99 | label=#CDD3DE;;true;false 100 | # Person.rb = :name 101 | # PHP = $_GET 102 | preprocessor=#6699CC 103 | regex=number_1 104 | operator=#5FB3B3;;false;false 105 | decorator=#6699CC;;false;false 106 | other=#EC5f67 107 | 108 | # Markup-type languages 109 | #------------------------------------------------------------------------------- 110 | tag=#FAC863;;true;false 111 | tag_unknown=#EC5f67;;true;false 112 | tag_end=#FAC863;;false;false 113 | attribute=#F99157;;false;false 114 | attribute_unknown=#99C794;;false;false 115 | value=#6699CC 116 | entity=#FAC863 117 | 118 | # Diff 119 | #------------------------------------------------------------------------------- 120 | line_added=#99C794 121 | line_removed=#EC5f67 122 | line_changed=#6699CC 123 | -------------------------------------------------------------------------------- /geany/base16-oceanicnext.light.conf: -------------------------------------------------------------------------------- 1 | # Geany Base16 Template 2 | # Rob Loach (http://robloach.net) 3 | # 4 | # Copyright (c) 2013 Rob Loach 5 | # 6 | # Permission is hereby granted, free of charge, to any person obtaining a copy 7 | # of this software and associated documentation files (the "Software"), to deal 8 | # in the Software without restriction, including without limitation the rights 9 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | # copies of the Software, and to permit persons to whom the Software is 11 | # furnished to do so, subject to the following conditions: 12 | # 13 | # The above copyright notice and this permission notice shall be included in all 14 | # copies or substantial portions of the Software. 15 | # 16 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | # SOFTWARE. 23 | 24 | [theme_info] 25 | name=Base16 Oceanic Next Light 26 | description=Base16 Oceanic Next provides carefully chosen syntax highlighting and a default set of sixteen colors suitable for a wide range of applications. 27 | version=0.2.2 28 | author=Rob Loach (http://robloach.net) 29 | url=http://github.com/robloach/base16-geany 30 | 31 | [named_styles] 32 | default=#4F5B66;#D8DEE9;false;false 33 | error=#EC5f67 34 | 35 | # Editor Styles 36 | #------------------------------------------------------------------------------- 37 | selection=#A7ADBA;#65737E;false;true 38 | current_line=;#4F5B66;true;false 39 | brace_good=#99C794;;true;false 40 | brace_bad=#EC5f67;#4F5B66;true;false 41 | margin_line_number=#65737E;#4F5B66;true;false 42 | margin_folding=#65737E 43 | fold_symbol_highlight=#343D46 44 | indent_guide=#4F5B66 45 | caret=#C0C5CE 46 | marker_line=#D8DEE9 47 | marker_search=#D8DEE9;#99C794;false;false 48 | marker_mark=#D8DEE9;#99C794; 49 | call_tips=#A7ADBA;;false;false 50 | white_space=#65737E;;true;false 51 | 52 | # Programming languages 53 | #------------------------------------------------------------------------------- 54 | comment=#A7ADBA 55 | comment_doc=#A7ADBA 56 | comment_line=#A7ADBA 57 | comment_line_doc=#A7ADBA 58 | comment_doc_keyword=#A7ADBA;;true;false 59 | comment_doc_keyword_error=#A7ADBA;;false;true 60 | 61 | number=#99C794 62 | number_1=#F99157 63 | number_2=#F99157 64 | 65 | type=#FAC863;;true 66 | # Person.rb = Person 67 | class=#FAC863;;true 68 | # Person.rb = initialize 69 | # PHP 70 | function=#6699CC;;false;false 71 | parameter=#CDD3DE 72 | 73 | keyword=#AB7967;;true;false 74 | # Person.rb = class, include, def, end, attr_accessor, etc 75 | # PHP = include_once(), if elseif else 76 | keyword_1=#C594C5;;false;false 77 | keyword_2=#F99157;;false;false 78 | keyword_3=#5FB3B3;;false;false 79 | keyword_4=#F99157;;false;true 80 | 81 | identifier=#5FB3B3;;false;false 82 | # Person.rb = ActiveModel::Conversion 83 | identifier_1=#5FB3B3;;false;false 84 | identifier_2=#5FB3B3;;false;false 85 | identifier_3=#6699CC;;true;false 86 | identifier_4=#C594C5;;false;false 87 | 88 | string=#F99157 89 | string_1=#99C794 90 | string_2=#99C794 91 | string_3=#5FB3B3 92 | string_4=#6699CC 93 | string_eol=#C594C5;;false;true 94 | 95 | character=string_1 96 | backtick=#FAC863 97 | here_doc=#FAC863 98 | scalar=#FAC863 99 | label=#CDD3DE;;true;false 100 | # Person.rb = :name 101 | # PHP = $_GET 102 | preprocessor=#6699CC 103 | regex=number_1 104 | operator=#C0C5CE;;false;false 105 | decorator=#6699CC;;false;false 106 | other=#EC5f67 107 | 108 | # Markup-type languages 109 | #------------------------------------------------------------------------------- 110 | tag=#FAC863;;true;false 111 | tag_unknown=#EC5f67;;true;false 112 | tag_end=#FAC863;;false;false 113 | attribute=#F99157;;false;false 114 | attribute_unknown=#99C794;;false;false 115 | value=#6699CC 116 | entity=#FAC863 117 | 118 | # Diff 119 | #------------------------------------------------------------------------------- 120 | line_added=#99C794 121 | line_removed=#EC5f67 122 | line_changed=#6699CC 123 | -------------------------------------------------------------------------------- /gedit/base16-oceanicnext.dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | Dmitri Voronianski (http://pixelhunter.me) 28 | <_description>Base16 Oceanic Next Dark 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 |