├── .gitignore ├── images ├── icon.png ├── react.png ├── ruby.png ├── rust.png └── terminal.png ├── .vscodeignore ├── .gitattributes ├── .vscode └── launch.json ├── package.json ├── CHANGELOG.md ├── README.md ├── themes └── Kimbie Dark+-color-theme.json └── LICENSE.txt /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.vsix 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnamsons/Kimbie-Dark-Plus/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnamsons/Kimbie-Dark-Plus/HEAD/images/react.png -------------------------------------------------------------------------------- /images/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnamsons/Kimbie-Dark-Plus/HEAD/images/ruby.png -------------------------------------------------------------------------------- /images/rust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnamsons/Kimbie-Dark-Plus/HEAD/images/rust.png -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | .gitignore 4 | vsc-extension-quickstart.md 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Set default behavior to automatically normalize line endings. 2 | * text=auto 3 | 4 | -------------------------------------------------------------------------------- /images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnamsons/Kimbie-Dark-Plus/HEAD/images/terminal.png -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | // A launch configuration that launches the extension inside a new window 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | { 6 | "version": "0.2.0", 7 | "configurations": [ 8 | { 9 | "name": "Extension", 10 | "type": "extensionHost", 11 | "request": "launch", 12 | "runtimeExecutable": "${execPath}", 13 | "args": [ 14 | "--extensionDevelopmentPath=${workspaceFolder}" 15 | ] 16 | } 17 | ] 18 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kimbie-dark-plus", 3 | "displayName": "Kimbie Dark+", 4 | "description": "Kimbie Dark improved", 5 | "version": "1.3.0", 6 | "author": "Dāvis Namsons", 7 | "publisher": "dnamsons", 8 | "license": "Creative Commons Attribution-ShareAlike 4.0 Unported", 9 | "icon": "images/icon.png", 10 | "engines": { 11 | "vscode": "^1.29.0" 12 | }, 13 | "categories": [ 14 | "Themes" 15 | ], 16 | "contributes": { 17 | "themes": [ 18 | { 19 | "label": "Kimbie Dark+", 20 | "uiTheme": "vs-dark", 21 | "path": "./themes/Kimbie Dark+-color-theme.json" 22 | } 23 | ] 24 | }, 25 | "keywords": [ 26 | "theme", 27 | "dark", 28 | "kimbie", 29 | "warm", 30 | "improved" 31 | ], 32 | "repository": { 33 | "type": "git", 34 | "url": "https://github.com/dnamsons/Kimbie-Dark-Plus/" 35 | }, 36 | "homepage": "https://github.com/dnamsons/Kimbie-Dark-Plus/", 37 | "bugs": { 38 | "url": "https://github.com/dnamsons/Kimbie-Dark-Plus/issues" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to this project will be documented in this file. 4 | 5 | ## [1.3.0] - 2020-09-02 6 | 7 | - Improvements to foreground colors([#18](https://github.com/dnamsons/Kimbie-Dark-Plus/pull/18)) 8 | - Input foreground colors 9 | - Icon foreground color 10 | - editor widget foreground color 11 | - Improvements to Typescript syntax highlighting([#17](https://github.com/dnamsons/Kimbie-Dark-Plus/pull/17)) 12 | - Enable semantic syntax highlighting([#15](https://github.com/dnamsons/Kimbie-Dark-Plus/pull/15)) 13 | 14 | ## [1.2.0] - 2020-04-09 15 | 16 | - Fix command palette syntax highlighting after VSCode 1.44 update([#14](https://github.com/dnamsons/Kimbie-Dark-Plus/pull/14)) 17 | - Fix default scope getting overwritten for some punctiation types([#13](https://github.com/dnamsons/Kimbie-Dark-Plus/pull/13)) 18 | - Add syntax highlighting for YARD docs([#12](https://github.com/dnamsons/Kimbie-Dark-Plus/pull/12)) 19 | - Custom color for rust-analyzer inlay hint([#11](https://github.com/dnamsons/Kimbie-Dark-Plus/pull/11)) 20 | - Syntax coloring to inheritance symbol([#10](https://github.com/dnamsons/Kimbie-Dark-Plus/pull/10)) 21 | 22 | ## [1.1.0] - 2020-02-01 23 | 24 | - Changed syntax coloring for inherited classes([#7](https://github.com/dnamsons/Kimbie-Dark-Plus/pull/8)) 25 | - Improvements to Javascript syntax highlighting([#6](https://github.com/dnamsons/Kimbie-Dark-Plus/pull/6)) 26 | - Improvements to Rust syntax highlighting([#5](https://github.com/dnamsons/Kimbie-Dark-Plus/pull/5)) 27 | 28 | ## [1.0.5] - 2020-01-13 29 | 30 | - Added default color for embedded content in CoffeeScript([#2](https://github.com/dnamsons/Kimbie-Dark-Plus/pull/2)). 31 | - Improvements for Haskell syntax highlighting([#1](https://github.com/dnamsons/Kimbie-Dark-Plus/pull/1)). 32 | 33 | ## [1.0.4] - 2019-03-08 34 | 35 | - Changed the extension icon 36 | 37 | ## [1.0.3] - 2018-12-09 38 | 39 | - Syntax coloring improvements for Elixir 40 | - Embedded variable color(`source.elixir.embedded`) 41 | - Module color(`variable.other.constant.elixir`) 42 | - Symbol color(`constant.other.symbol`) 43 | 44 | ## [1.0.2] - 2018-11-29 45 | 46 | - Changed syntax coloring for `support.function` 47 | 48 | ## [1.0.1] - 2018-11-29 49 | 50 | - Fixed the `icon` path 51 | - Added VS Marketplace badges 52 | 53 | ## [1.0.0] - 2018-11-29 54 | 55 | - Initial release 🎉 56 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |

Kimbie Dark+

3 |
4 | 5 | [![Creative Commons](https://img.shields.io/badge/license-CC--BY--SA%204.0-orange.svg?style=flat-square)](http://creativecommons.org/licenses/by-sa/4.0/) 6 | [![Rating](https://vsmarketplacebadge.apphb.com/rating-short/dnamsons.kimbie-dark-plus.svg)](https://marketplace.visualstudio.com/items?itemName=dnamsons.kimbie-dark-plus) 7 | [![Version](https://vsmarketplacebadge.apphb.com/version-short/dnamsons.kimbie-dark-plus.svg)](https://marketplace.visualstudio.com/items?itemName=dnamsons.kimbie-dark-plus) 8 | [![Installs](https://vsmarketplacebadge.apphb.com/installs/dnamsons.kimbie-dark-plus.svg)](https://marketplace.visualstudio.com/items?itemName=dnamsons.kimbie-dark-plus) 9 | 10 | A color scheme inspired by [Cold Spring Fault Less Youth](http://www.discogs.com/Mount-Kimbie-Cold-Spring-Fault-Less-Youth/master/561611), originally created by [Jan T. Sott](https://github.com/idleberg/Kimbie.tmTheme), modified by [Dāvis Namsons](https://github.com/dnamsons). 11 | 12 | ## Improvements 13 | 14 | - Syntax coloring improvements for Ruby/JS/Elixir/Rust/etc. 15 | - Better editor color scheme that is kind on the eyes 16 | - Improved UI & terminal colors 17 | - Support for semantic syntax highlighting 18 | 19 | ## Screenshots 20 | 21 | ### React 22 | 23 | ![React syntax highlighting demonstration](./images/react.png) 24 | 25 | ### Ruby 26 | 27 | ![Ruby syntax highlighting demonstration](./images/ruby.png) 28 | 29 | ### Rust 30 | 31 | ![Rust syntax highlighting demonstration](./images/rust.png) 32 | 33 | 34 | ### Integrated terminal colors 35 | 36 | ![Terminal color theme demonstration](./images/terminal.png) 37 | 38 | ## Color Reference 39 | 40 | ### Syntax Colors 41 | 42 | | Color | Usage | 43 | | :---------------------------------------------------------: | ------------------------------------------------------------- | 44 | | ![](https://via.placeholder.com/10/98676A?text=+) `#98676A` | Keywords, template literals, CSS pseudo classes and constants | 45 | | ![](https://via.placeholder.com/10/DC3958?text=+) `#DC3958` | Variables, tags | 46 | | ![](https://via.placeholder.com/10/8AB1B0?text=+) `#8AB1B0` | Functions, CSS #ids, markup headings | 47 | | ![](https://via.placeholder.com/10/F79A32?text=+) `#F79A32` | Constants, attributes, units, markup links | 48 | | ![](https://via.placeholder.com/10/889B4A?text=+) `#889B4A` | Strings, pseudo CSS, inherited classes | 49 | | ![](https://via.placeholder.com/10/088649?text=+) `#088649` | Embedded punctuation (e.g. `${}` or `{}` ) | 50 | | ![](https://via.placeholder.com/10/F06431?text=+) `#F06431` | Classes, CSS classes | 51 | | ![](https://via.placeholder.com/10/7E602C?text=+) `#7E602C` | Regex, escape characters, attributes and preprocessors | 52 | | ![](https://via.placeholder.com/10/D3AF86?text=+) `#D3AF86` | Property names, simple text | 53 | 54 | ### Terminal Colors 55 | 56 | | Color | Normal | Bright | 57 | | :-----------------: | :---------------------------------------------------------: | :---------------------------------------------------------: | 58 | | Blue | ![](https://via.placeholder.com/10/719190?text=+) `#719190` | ![](https://via.placeholder.com/10/8AB1B0?text=+) `#8AB1B0` | 59 | | Cyan | ![](https://via.placeholder.com/10/418292?text=+) `#418292` | ![](https://via.placeholder.com/10/4C96A8?text=+) `#4C96A8` | 60 | | Green | ![](https://via.placeholder.com/10/889B4A?text=+) `#889B4A` | ![](https://via.placeholder.com/10/A3B95A?text=+) `#A3B95A` | 61 | | Magenta | ![](https://via.placeholder.com/10/7E5053?text=+) `#7E5053` | ![](https://via.placeholder.com/10/98676A?text=+) `#98676A` | 62 | | Red | ![](https://via.placeholder.com/10/DC3958?text=+) `#DC3958` | ![](https://via.placeholder.com/10/F14A68?text=+) `#F14A68` | 63 | | Yellow | ![](https://via.placeholder.com/10/F79A32?text=+) `#F79A32` | ![](https://via.placeholder.com/10/FCAC51?text=+) `#FCAC51` | 64 | | Foreground(Default) | ![](https://via.placeholder.com/10/C2A383?text=+) `#C2A383` | | 65 | 66 | ## License 67 | 68 | This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 Unported License](http://creativecommons.org/licenses/by-sa/4.0/deed.en_US). 69 | -------------------------------------------------------------------------------- /themes/Kimbie Dark+-color-theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Kimbie Dark+", 3 | "type": "dark", 4 | "colors": { 5 | "activityBar.background": "#221a0f", 6 | "activityBarBadge.background": "#274D58", 7 | "activityBarBadge.foreground": "#DCB893", 8 | "activityBar.foreground": "#829AA0", 9 | "badge.background": "#274D58", 10 | "badge.foreground": "#DCB893", 11 | "breadcrumb.foreground": "#9c6e43", 12 | "breadcrumb.focusForeground": "#c2a383", 13 | "breadcrumb.activeSelectionForeground": "#c2a383", 14 | "button.background": "#6e583b", 15 | "diffEditor.removedTextBackground": "#702c22e1", 16 | "dropdown.background": "#51412c", 17 | "dropdown.foreground": "#DCB893", 18 | "editor.background": "#221a0f", 19 | "editor.foreground": "#d3af86", 20 | "editor.lineHighlightBackground": "#4e3923a1", 21 | "editor.selectionBackground": "#7c5021a9", 22 | "editorCursor.foreground": "#d3af86", 23 | "editorGroupHeader.tabsBackground": "#131510", 24 | "editorGutter.deletedBackground": "#7e2b1e", 25 | "editorGutter.modifiedBackground": "#3C616B", 26 | "editorLineNumber.foreground": "#8D643D", 27 | "editorLineNumber.activeForeground": "#c2a383", 28 | "editorRuler.foreground": "#cc986869", 29 | "editorHoverWidget.background": "#221a14", 30 | "editorWhitespace.foreground": "#a57a4c", 31 | "editorWidget.foreground": "#C2A383", 32 | "editorWidget.background": "#131510", 33 | "focusBorder": "#a57a4c", 34 | "gitDecoration.addedResourceForeground": "#7b991a", 35 | "gitDecoration.untrackedResourceForeground": "#9dbe31", 36 | "gitDecoration.modifiedResourceForeground": "#f79a32", 37 | "gitDecoration.deletedResourceForeground": "#dc3958", 38 | "gitlens.trailingLineForegroundColor": "#cc9868", 39 | "icon.foreground": "#C2A383", 40 | "input.foreground": "#d3af86", 41 | "input.background": "#51412c", 42 | "input.placeholderForeground": "#998158", 43 | "inputOption.activeBorder": "#a57a4c", 44 | "inputValidation.errorBackground": "#5f0d0d", 45 | "inputValidation.errorBorder": "#9d2f23", 46 | "inputValidation.infoBackground": "#2b2a42", 47 | "inputValidation.infoBorder": "#1b60a5", 48 | "inputValidation.warningBackground": "#51412c", 49 | "list.activeSelectionBackground": "#7c5021", 50 | "list.focusBackground": "#7c5021AA", 51 | "list.highlightForeground": "#e3b583", 52 | "list.hoverBackground": "#7c502166", 53 | "list.inactiveSelectionBackground": "#645342", 54 | "menu.background": "#362712", 55 | "menu.foreground": "#C2A383", 56 | "panelTitle.activeBorder": "#274D58", 57 | "panelTitle.activeForeground": "#D4B290", 58 | "panelTitle.inactiveForeground": "#8D643D", 59 | "peekView.border": "#5e452b", 60 | "peekViewEditor.background": "#221a14", 61 | "peekViewEditor.matchHighlightBackground": "#84613daa", 62 | "peekViewResult.background": "#362712", 63 | "peekViewTitle.background": "#362712", 64 | "pickerGroup.border": "#e3b583", 65 | "pickerGroup.foreground": "#e3b583", 66 | "progressBar.background": "#7f5d38", 67 | "quickInput.background": "#352612", 68 | "quickInput.foreground": "#DCB893", 69 | "rust_analyzer.inlayHints.foreground": "#7e6944", 70 | "scrollbarSlider.background": "#3b2b1be1", 71 | "scrollbarSlider.hoverBackground": "#473522dc", 72 | "scrollbarSlider.activeBackground": "#5c452dbb", 73 | "selection.background": "#84613daa", 74 | "sideBar.background": "#362712", 75 | "sideBar.foreground": "#C2A383", 76 | "sideBarSectionHeader.background": "#241a10", 77 | "sideBarSectionHeader.foreground": "#8b6a4a", 78 | "statusBar.background": "#274952", 79 | "statusBar.foreground": "#DCB893", 80 | "statusBar.debuggingBackground": "#175429", 81 | "statusBar.debuggingForeground": "#DCB893", 82 | "statusBar.noFolderBackground": "#422d2d", 83 | "statusBar.noFolderForeground": "#DCB893", 84 | "tab.activeBorder": "#274D58", 85 | "tab.border": "#5e3a1b", 86 | "tab.activeForeground": "#D4B290", 87 | "tab.inactiveBackground": "#221a0f", 88 | "tab.inactiveForeground": "#8D643D", 89 | "titleBar.activeBackground": "#423523", 90 | "welcomePage.buttonHoverBackground": "#312318", 91 | "terminal.ansiBlue": "#719190", 92 | "terminal.ansiBrightBlue": "#8ab1b0", 93 | "terminal.ansiBrightCyan": "#4c96a8", 94 | "terminal.ansiBrightGreen": "#a3b95a", 95 | "terminal.ansiBrightMagenta": "#98676a", 96 | "terminal.ansiBrightRed": "#f14a68", 97 | "terminal.ansiBrightYellow": "#fcac51", 98 | "terminal.ansiCyan": "#418292", 99 | "terminal.ansiGreen": "#889b4a", 100 | "terminal.ansiMagenta": "#7e5053", 101 | "terminal.ansiRed": "#dc3958", 102 | "terminal.ansiYellow": "#f79a32", 103 | "terminal.foreground": "#c2a383" 104 | }, 105 | "semanticHighlighting": true, 106 | "tokenColors": [ 107 | { 108 | "scope": "source", 109 | "settings": { 110 | "foreground": "#d3af86" 111 | } 112 | }, 113 | { 114 | "scope": [ 115 | "meta.embedded", 116 | "source.groovy.embedded", 117 | "source.elixir.embedded", 118 | "source.coffee.embedded" 119 | ], 120 | "settings": { 121 | "foreground": "#d3af86" 122 | } 123 | }, 124 | { 125 | "name": "Comments", 126 | "scope": ["comment", "punctuation.definition.comment"], 127 | "settings": { 128 | "foreground": "#a57a4c" 129 | } 130 | }, 131 | { 132 | "name": "Punctuation", 133 | "scope": [ 134 | "punctuation.definition.string", 135 | "punctuation.definition.variable", 136 | "punctuation.definition.string", 137 | "punctuation.definition.parameters", 138 | "punctuation.definition.string", 139 | "punctuation.definition.array", 140 | "punctuation.definition.entity", 141 | "punctuation.separator.inheritance", 142 | "comment.line.keyword.punctuation.yard", 143 | "comment.line.punctuation.yard", 144 | "punctuation.section.function.ruby", 145 | "punctuation.separator.object.ruby" 146 | ], 147 | "settings": { 148 | "foreground": "#d3af86" 149 | } 150 | }, 151 | { 152 | "name": "Delimiters", 153 | "scope": "none", 154 | "settings": { 155 | "foreground": "#d3af86" 156 | } 157 | }, 158 | { 159 | "name": "Operators", 160 | "scope": "keyword.operator", 161 | "settings": { 162 | "foreground": "#d3af86" 163 | } 164 | }, 165 | { 166 | "name": "Keywords", 167 | "scope": [ 168 | "keyword", 169 | "keyword.control", 170 | "keyword.operator.haskell", 171 | "keyword.other.haskell", 172 | "keyword.other.forall.haskell", 173 | "keyword.other.arrow.haskell", 174 | "keyword.other.big-arrow.haskell", 175 | "keyword.other.double-colon.haskell", 176 | "variable.language.rust", 177 | "variable.language", 178 | "comment.line.keyword.yard", 179 | "keyword.operator.expression" 180 | ], 181 | "settings": { 182 | "foreground": "#98676a" 183 | } 184 | }, 185 | { 186 | "name": "Variables", 187 | "scope": [ 188 | "variable", 189 | "variable.parameter.function", 190 | "support.variable.property", 191 | "comment.line.parameter.yard", 192 | "entity.name.function.member" 193 | ], 194 | "settings": { 195 | "foreground": "#dc3958" 196 | } 197 | }, 198 | { 199 | "name": "Functions", 200 | "scope": [ 201 | "entity.name.function", 202 | "meta.require", 203 | "support.function.any-method", 204 | "support.function", 205 | "keyword.operator.new" 206 | ], 207 | "settings": { 208 | "foreground": "#8ab1b0" 209 | } 210 | }, 211 | { 212 | "name": "Namespaces", 213 | "scope": "entity.name.namespace", 214 | "settings": { 215 | "foreground": "#f06431" 216 | } 217 | }, 218 | { 219 | "name": "Classes & types", 220 | "scope": [ 221 | "support.class", 222 | "entity.name.class", 223 | "entity.name.type", 224 | "variable.other.constant.elixir", 225 | "entity.other.inherited-class", 226 | "comment.line.type.yard", 227 | "storage.type.struct", 228 | "support.type.primitive", 229 | "support.type.builtin" 230 | ], 231 | "settings": { 232 | "foreground": "#f06431" 233 | } 234 | }, 235 | { 236 | "name": "Methods", 237 | "scope": "keyword.other.special-method", 238 | "settings": { 239 | "foreground": "#8ab1b0" 240 | } 241 | }, 242 | { 243 | "name": "Storage", 244 | "scope": "storage", 245 | "settings": { 246 | "foreground": "#98676a" 247 | } 248 | }, 249 | { 250 | "name": "Strings", 251 | "scope": ["string", "constant.other.symbol"], 252 | "settings": { 253 | "foreground": "#889b4a" 254 | } 255 | }, 256 | { 257 | "name": "Integers", 258 | "scope": "constant.numeric", 259 | "settings": { 260 | "foreground": "#f79a32" 261 | } 262 | }, 263 | { 264 | "name": "Floats", 265 | "scope": "none", 266 | "settings": { 267 | "foreground": "#f79a32" 268 | } 269 | }, 270 | { 271 | "name": "Boolean", 272 | "scope": "none", 273 | "settings": { 274 | "foreground": "#f79a32" 275 | } 276 | }, 277 | { 278 | "name": "Constants", 279 | "scope": [ 280 | "constant", 281 | "meta.object-literal.key", 282 | "constant.other.symbol", 283 | "storage.type.haskell", 284 | "variable.other.enummember" 285 | ], 286 | "settings": { 287 | "foreground": "#f79a32" 288 | } 289 | }, 290 | { 291 | "name": "Tags", 292 | "scope": "entity.name.tag", 293 | "settings": { 294 | "foreground": "#dc3958" 295 | } 296 | }, 297 | { 298 | "name": "Attributes", 299 | "scope": "entity.other.attribute-name", 300 | "settings": { 301 | "foreground": "#f79a32" 302 | } 303 | }, 304 | { 305 | "name": "Attribute Classes", 306 | "scope": "entity.other.attribute-name.class", 307 | "settings": { 308 | "foreground": "#f06431" 309 | } 310 | }, 311 | { 312 | "name": "Attribute IDs", 313 | "scope": "entity.other.attribute-name.id", 314 | "settings": { 315 | "foreground": "#8ab1b0" 316 | } 317 | }, 318 | { 319 | "name": "Attribute Pseudo-classes", 320 | "scope": "entity.other.attribute-name.pseudo-class", 321 | "settings": { 322 | "foreground": "#98676a" 323 | } 324 | }, 325 | { 326 | "name": "Constants", 327 | "scope": "support.constant", 328 | "settings": { 329 | "foreground": "#98676a" 330 | } 331 | }, 332 | { 333 | "name": "Selector", 334 | "scope": "meta.selector", 335 | "settings": { 336 | "foreground": "#98676a" 337 | } 338 | }, 339 | { 340 | "name": "Values", 341 | "scope": "none", 342 | "settings": { 343 | "foreground": "#f79a32" 344 | } 345 | }, 346 | { 347 | "name": "Headings", 348 | "scope": [ 349 | "markup.heading", 350 | "markup.heading.setext", 351 | "punctuation.definition.heading", 352 | "entity.name.section" 353 | ], 354 | "settings": { 355 | "fontStyle": "", 356 | "foreground": "#8ab1b0" 357 | } 358 | }, 359 | { 360 | "name": "Units", 361 | "scope": "keyword.other.unit", 362 | "settings": { 363 | "foreground": "#f79a32" 364 | } 365 | }, 366 | { 367 | "name": "Bold", 368 | "scope": ["markup.bold", "punctuation.definition.bold"], 369 | "settings": { 370 | "fontStyle": "bold", 371 | "foreground": "#f06431" 372 | } 373 | }, 374 | { 375 | "name": "Italic", 376 | "scope": ["markup.italic", "punctuation.definition.italic"], 377 | "settings": { 378 | "fontStyle": "italic", 379 | "foreground": "#98676a" 380 | } 381 | }, 382 | { 383 | "name": "Code", 384 | "scope": "markup.inline.raw", 385 | "settings": { 386 | "foreground": "#889b4a" 387 | } 388 | }, 389 | { 390 | "name": "Link Text", 391 | "scope": "string.other.link", 392 | "settings": { 393 | "foreground": "#dc3958" 394 | } 395 | }, 396 | { 397 | "name": "Link Url", 398 | "scope": "meta.link", 399 | "settings": { 400 | "foreground": "#f79a32" 401 | } 402 | }, 403 | { 404 | "name": "Lists", 405 | "scope": "markup.list", 406 | "settings": { 407 | "foreground": "#dc3958" 408 | } 409 | }, 410 | { 411 | "name": "Quotes", 412 | "scope": "markup.quote", 413 | "settings": { 414 | "foreground": "#f79a32" 415 | } 416 | }, 417 | { 418 | "name": "Separator", 419 | "scope": "meta.separator", 420 | "settings": { 421 | "foreground": "#d3af86" 422 | } 423 | }, 424 | { 425 | "name": "Inserted", 426 | "scope": "markup.inserted", 427 | "settings": { 428 | "foreground": "#889b4a" 429 | } 430 | }, 431 | { 432 | "name": "Deleted", 433 | "scope": "markup.deleted", 434 | "settings": { 435 | "foreground": "#dc3958" 436 | } 437 | }, 438 | { 439 | "name": "Changed", 440 | "scope": "markup.changed", 441 | "settings": { 442 | "foreground": "#98676a" 443 | } 444 | }, 445 | { 446 | "name": "Colors", 447 | "scope": "constant.other.color", 448 | "settings": { 449 | "foreground": "#889b4a" 450 | } 451 | }, 452 | { 453 | "name": "Regular Expressions", 454 | "scope": "string.regexp", 455 | "settings": { 456 | "foreground": "#7e602c" 457 | } 458 | }, 459 | { 460 | "name": "Escape Characters", 461 | "scope": "constant.character.escape", 462 | "settings": { 463 | "foreground": "#7e602c" 464 | } 465 | }, 466 | { 467 | "name": "Embedded", 468 | "scope": [ 469 | "punctuation.section.embedded", 470 | "punctuation.definition.template-expression", 471 | "variable.interpolation" 472 | ], 473 | "settings": { 474 | "foreground": "#088649" 475 | } 476 | }, 477 | { 478 | "name": "Invalid", 479 | "scope": "invalid.illegal", 480 | "settings": { 481 | "foreground": "#dc3958" 482 | } 483 | }, 484 | { 485 | "scope": [ 486 | "entity.name.function.infix.haskell", 487 | "entity.other.inherited-class.haskell" 488 | ], 489 | "settings": { 490 | "foreground": "#d3af86" 491 | } 492 | }, 493 | { 494 | "name": "Preprocessors and attributes", 495 | "scope": [ 496 | "meta.attribute.rust", 497 | "meta.preprocessor.haskell", 498 | "keyword.other.preprocessor.haskell" 499 | ], 500 | "settings": { 501 | "foreground": "#7e602c" 502 | } 503 | } 504 | ] 505 | } 506 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Attribution-NonCommercial-ShareAlike 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International 58 | Public License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-NonCommercial-ShareAlike 4.0 International Public License 63 | ("Public License"). To the extent this Public License may be 64 | interpreted as a contract, You are granted the Licensed Rights in 65 | consideration of Your acceptance of these terms and conditions, and the 66 | Licensor grants You such rights in consideration of benefits the 67 | Licensor receives from making the Licensed Material available under 68 | these terms and conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. BY-NC-SA Compatible License means a license listed at 88 | creativecommons.org/compatiblelicenses, approved by Creative 89 | Commons as essentially the equivalent of this Public License. 90 | 91 | d. Copyright and Similar Rights means copyright and/or similar rights 92 | closely related to copyright including, without limitation, 93 | performance, broadcast, sound recording, and Sui Generis Database 94 | Rights, without regard to how the rights are labeled or 95 | categorized. For purposes of this Public License, the rights 96 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 | Rights. 98 | 99 | e. Effective Technological Measures means those measures that, in the 100 | absence of proper authority, may not be circumvented under laws 101 | fulfilling obligations under Article 11 of the WIPO Copyright 102 | Treaty adopted on December 20, 1996, and/or similar international 103 | agreements. 104 | 105 | f. Exceptions and Limitations means fair use, fair dealing, and/or 106 | any other exception or limitation to Copyright and Similar Rights 107 | that applies to Your use of the Licensed Material. 108 | 109 | g. License Elements means the license attributes listed in the name 110 | of a Creative Commons Public License. The License Elements of this 111 | Public License are Attribution, NonCommercial, and ShareAlike. 112 | 113 | h. Licensed Material means the artistic or literary work, database, 114 | or other material to which the Licensor applied this Public 115 | License. 116 | 117 | i. Licensed Rights means the rights granted to You subject to the 118 | terms and conditions of this Public License, which are limited to 119 | all Copyright and Similar Rights that apply to Your use of the 120 | Licensed Material and that the Licensor has authority to license. 121 | 122 | j. Licensor means the individual(s) or entity(ies) granting rights 123 | under this Public License. 124 | 125 | k. NonCommercial means not primarily intended for or directed towards 126 | commercial advantage or monetary compensation. For purposes of 127 | this Public License, the exchange of the Licensed Material for 128 | other material subject to Copyright and Similar Rights by digital 129 | file-sharing or similar means is NonCommercial provided there is 130 | no payment of monetary compensation in connection with the 131 | exchange. 132 | 133 | l. Share means to provide material to the public by any means or 134 | process that requires permission under the Licensed Rights, such 135 | as reproduction, public display, public performance, distribution, 136 | dissemination, communication, or importation, and to make material 137 | available to the public including in ways that members of the 138 | public may access the material from a place and at a time 139 | individually chosen by them. 140 | 141 | m. Sui Generis Database Rights means rights other than copyright 142 | resulting from Directive 96/9/EC of the European Parliament and of 143 | the Council of 11 March 1996 on the legal protection of databases, 144 | as amended and/or succeeded, as well as other essentially 145 | equivalent rights anywhere in the world. 146 | 147 | n. You means the individual or entity exercising the Licensed Rights 148 | under this Public License. Your has a corresponding meaning. 149 | 150 | 151 | Section 2 -- Scope. 152 | 153 | a. License grant. 154 | 155 | 1. Subject to the terms and conditions of this Public License, 156 | the Licensor hereby grants You a worldwide, royalty-free, 157 | non-sublicensable, non-exclusive, irrevocable license to 158 | exercise the Licensed Rights in the Licensed Material to: 159 | 160 | a. reproduce and Share the Licensed Material, in whole or 161 | in part, for NonCommercial purposes only; and 162 | 163 | b. produce, reproduce, and Share Adapted Material for 164 | NonCommercial purposes only. 165 | 166 | 2. Exceptions and Limitations. For the avoidance of doubt, where 167 | Exceptions and Limitations apply to Your use, this Public 168 | License does not apply, and You do not need to comply with 169 | its terms and conditions. 170 | 171 | 3. Term. The term of this Public License is specified in Section 172 | 6(a). 173 | 174 | 4. Media and formats; technical modifications allowed. The 175 | Licensor authorizes You to exercise the Licensed Rights in 176 | all media and formats whether now known or hereafter created, 177 | and to make technical modifications necessary to do so. The 178 | Licensor waives and/or agrees not to assert any right or 179 | authority to forbid You from making technical modifications 180 | necessary to exercise the Licensed Rights, including 181 | technical modifications necessary to circumvent Effective 182 | Technological Measures. For purposes of this Public License, 183 | simply making modifications authorized by this Section 2(a) 184 | (4) never produces Adapted Material. 185 | 186 | 5. Downstream recipients. 187 | 188 | a. Offer from the Licensor -- Licensed Material. Every 189 | recipient of the Licensed Material automatically 190 | receives an offer from the Licensor to exercise the 191 | Licensed Rights under the terms and conditions of this 192 | Public License. 193 | 194 | b. Additional offer from the Licensor -- Adapted Material. 195 | Every recipient of Adapted Material from You 196 | automatically receives an offer from the Licensor to 197 | exercise the Licensed Rights in the Adapted Material 198 | under the conditions of the Adapter's License You apply. 199 | 200 | c. No downstream restrictions. You may not offer or impose 201 | any additional or different terms or conditions on, or 202 | apply any Effective Technological Measures to, the 203 | Licensed Material if doing so restricts exercise of the 204 | Licensed Rights by any recipient of the Licensed 205 | Material. 206 | 207 | 6. No endorsement. Nothing in this Public License constitutes or 208 | may be construed as permission to assert or imply that You 209 | are, or that Your use of the Licensed Material is, connected 210 | with, or sponsored, endorsed, or granted official status by, 211 | the Licensor or others designated to receive attribution as 212 | provided in Section 3(a)(1)(A)(i). 213 | 214 | b. Other rights. 215 | 216 | 1. Moral rights, such as the right of integrity, are not 217 | licensed under this Public License, nor are publicity, 218 | privacy, and/or other similar personality rights; however, to 219 | the extent possible, the Licensor waives and/or agrees not to 220 | assert any such rights held by the Licensor to the limited 221 | extent necessary to allow You to exercise the Licensed 222 | Rights, but not otherwise. 223 | 224 | 2. Patent and trademark rights are not licensed under this 225 | Public License. 226 | 227 | 3. To the extent possible, the Licensor waives any right to 228 | collect royalties from You for the exercise of the Licensed 229 | Rights, whether directly or through a collecting society 230 | under any voluntary or waivable statutory or compulsory 231 | licensing scheme. In all other cases the Licensor expressly 232 | reserves any right to collect such royalties, including when 233 | the Licensed Material is used other than for NonCommercial 234 | purposes. 235 | 236 | 237 | Section 3 -- License Conditions. 238 | 239 | Your exercise of the Licensed Rights is expressly made subject to the 240 | following conditions. 241 | 242 | a. Attribution. 243 | 244 | 1. If You Share the Licensed Material (including in modified 245 | form), You must: 246 | 247 | a. retain the following if it is supplied by the Licensor 248 | with the Licensed Material: 249 | 250 | i. identification of the creator(s) of the Licensed 251 | Material and any others designated to receive 252 | attribution, in any reasonable manner requested by 253 | the Licensor (including by pseudonym if 254 | designated); 255 | 256 | ii. a copyright notice; 257 | 258 | iii. a notice that refers to this Public License; 259 | 260 | iv. a notice that refers to the disclaimer of 261 | warranties; 262 | 263 | v. a URI or hyperlink to the Licensed Material to the 264 | extent reasonably practicable; 265 | 266 | b. indicate if You modified the Licensed Material and 267 | retain an indication of any previous modifications; and 268 | 269 | c. indicate the Licensed Material is licensed under this 270 | Public License, and include the text of, or the URI or 271 | hyperlink to, this Public License. 272 | 273 | 2. You may satisfy the conditions in Section 3(a)(1) in any 274 | reasonable manner based on the medium, means, and context in 275 | which You Share the Licensed Material. For example, it may be 276 | reasonable to satisfy the conditions by providing a URI or 277 | hyperlink to a resource that includes the required 278 | information. 279 | 3. If requested by the Licensor, You must remove any of the 280 | information required by Section 3(a)(1)(A) to the extent 281 | reasonably practicable. 282 | 283 | b. ShareAlike. 284 | 285 | In addition to the conditions in Section 3(a), if You Share 286 | Adapted Material You produce, the following conditions also apply. 287 | 288 | 1. The Adapter's License You apply must be a Creative Commons 289 | license with the same License Elements, this version or 290 | later, or a BY-NC-SA Compatible License. 291 | 292 | 2. You must include the text of, or the URI or hyperlink to, the 293 | Adapter's License You apply. You may satisfy this condition 294 | in any reasonable manner based on the medium, means, and 295 | context in which You Share Adapted Material. 296 | 297 | 3. You may not offer or impose any additional or different terms 298 | or conditions on, or apply any Effective Technological 299 | Measures to, Adapted Material that restrict exercise of the 300 | rights granted under the Adapter's License You apply. 301 | 302 | 303 | Section 4 -- Sui Generis Database Rights. 304 | 305 | Where the Licensed Rights include Sui Generis Database Rights that 306 | apply to Your use of the Licensed Material: 307 | 308 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 309 | to extract, reuse, reproduce, and Share all or a substantial 310 | portion of the contents of the database for NonCommercial purposes 311 | only; 312 | 313 | b. if You include all or a substantial portion of the database 314 | contents in a database in which You have Sui Generis Database 315 | Rights, then the database in which You have Sui Generis Database 316 | Rights (but not its individual contents) is Adapted Material, 317 | including for purposes of Section 3(b); and 318 | 319 | c. You must comply with the conditions in Section 3(a) if You Share 320 | all or a substantial portion of the contents of the database. 321 | 322 | For the avoidance of doubt, this Section 4 supplements and does not 323 | replace Your obligations under this Public License where the Licensed 324 | Rights include other Copyright and Similar Rights. 325 | 326 | 327 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 328 | 329 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 330 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 331 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 332 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 333 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 334 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 335 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 336 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 337 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 338 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 339 | 340 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 341 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 342 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 343 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 344 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 345 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 346 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 347 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 348 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 349 | 350 | c. The disclaimer of warranties and limitation of liability provided 351 | above shall be interpreted in a manner that, to the extent 352 | possible, most closely approximates an absolute disclaimer and 353 | waiver of all liability. 354 | 355 | 356 | Section 6 -- Term and Termination. 357 | 358 | a. This Public License applies for the term of the Copyright and 359 | Similar Rights licensed here. However, if You fail to comply with 360 | this Public License, then Your rights under this Public License 361 | terminate automatically. 362 | 363 | b. Where Your right to use the Licensed Material has terminated under 364 | Section 6(a), it reinstates: 365 | 366 | 1. automatically as of the date the violation is cured, provided 367 | it is cured within 30 days of Your discovery of the 368 | violation; or 369 | 370 | 2. upon express reinstatement by the Licensor. 371 | 372 | For the avoidance of doubt, this Section 6(b) does not affect any 373 | right the Licensor may have to seek remedies for Your violations 374 | of this Public License. 375 | 376 | c. For the avoidance of doubt, the Licensor may also offer the 377 | Licensed Material under separate terms or conditions or stop 378 | distributing the Licensed Material at any time; however, doing so 379 | will not terminate this Public License. 380 | 381 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 382 | License. 383 | 384 | 385 | Section 7 -- Other Terms and Conditions. 386 | 387 | a. The Licensor shall not be bound by any additional or different 388 | terms or conditions communicated by You unless expressly agreed. 389 | 390 | b. Any arrangements, understandings, or agreements regarding the 391 | Licensed Material not stated herein are separate from and 392 | independent of the terms and conditions of this Public License. 393 | 394 | 395 | Section 8 -- Interpretation. 396 | 397 | a. For the avoidance of doubt, this Public License does not, and 398 | shall not be interpreted to, reduce, limit, restrict, or impose 399 | conditions on any use of the Licensed Material that could lawfully 400 | be made without permission under this Public License. 401 | 402 | b. To the extent possible, if any provision of this Public License is 403 | deemed unenforceable, it shall be automatically reformed to the 404 | minimum extent necessary to make it enforceable. If the provision 405 | cannot be reformed, it shall be severed from this Public License 406 | without affecting the enforceability of the remaining terms and 407 | conditions. 408 | 409 | c. No term or condition of this Public License will be waived and no 410 | failure to comply consented to unless expressly agreed to by the 411 | Licensor. 412 | 413 | d. Nothing in this Public License constitutes or may be interpreted 414 | as a limitation upon, or waiver of, any privileges and immunities 415 | that apply to the Licensor or You, including from the legal 416 | processes of any jurisdiction or authority. 417 | 418 | ======================================================================= 419 | 420 | Creative Commons is not a party to its public 421 | licenses. Notwithstanding, Creative Commons may elect to apply one of 422 | its public licenses to material it publishes and in those instances 423 | will be considered the “Licensor.” The text of the Creative Commons 424 | public licenses is dedicated to the public domain under the CC0 Public 425 | Domain Dedication. Except for the limited purpose of indicating that 426 | material is shared under a Creative Commons public license or as 427 | otherwise permitted by the Creative Commons policies published at 428 | creativecommons.org/policies, Creative Commons does not authorize the 429 | use of the trademark "Creative Commons" or any other trademark or logo 430 | of Creative Commons without its prior written consent including, 431 | without limitation, in connection with any unauthorized modifications 432 | to any of its public licenses or any other arrangements, 433 | understandings, or agreements concerning use of licensed material. For 434 | the avoidance of doubt, this paragraph does not form part of the 435 | public licenses. 436 | 437 | Creative Commons may be contacted at creativecommons.org. 438 | --------------------------------------------------------------------------------