├── Commander.sublime-color-scheme ├── LICENSE.txt └── README.md /Commander.sublime-color-scheme: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Commander", 3 | "author": "Nikita Prokopov", 4 | "globals": 5 | { 6 | "foreground": "#00FFFF", 7 | "background": "#000080", 8 | "caret": "#FFFFFF", 9 | "block_caret": "#008080", 10 | "block_caret_border": "#008080", 11 | "block_caret_corner_style": "square", 12 | "line_highlight": "#000070", 13 | "misspelling": "#FF0000", 14 | "selection": "#008080", 15 | "selection_foreground": "#FFFFFF", 16 | "selection_border_width": "0", 17 | "selection_corner_style": "square", 18 | "inactive_selection": "#007070", 19 | "selection_corner_radius": "2", 20 | "highlight": "#FFFF00", 21 | "find_highlight_foreground": "#000000", 22 | "find_highlight": "#FFFF00", 23 | "brackets_options": "foreground underline", 24 | "brackets_foreground": "#FFFFFF", 25 | "bracket_contents_options": "foreground underline", 26 | "bracket_contents_foreground": "#FFFFFF", 27 | "tags_options": "foreground", 28 | "tags_foreground": "#FFFFFF" 29 | }, 30 | "rules": 31 | [ 32 | {"name": "Comment", 33 | "scope": "comment, punctuation.definition.comment", 34 | "foreground": "#FFFFFF"}, 35 | 36 | {"name": "String", 37 | "scope": "string", 38 | "foreground": "#00FF00"}, 39 | 40 | {"name": "Escapes", 41 | "scope": "constant.character.escape, constant.other.placeholder", 42 | "foreground": "#008080"}, 43 | 44 | {"name": "Punctuation", 45 | "scope": "punctuation - punctuation.section, keyword.operator, string punctuation.section", 46 | "foreground": "#008080"}, 47 | 48 | {"name": "Inner brackets", 49 | "scope": "meta.parens meta.parens punctuation.section, meta.parens meta.brackets punctuation.section, meta.parens meta.braces punctuation.section, meta.brackets meta.parens punctuation.section, meta.brackets meta.brackets punctuation.section, meta.brackets meta.braces punctuation.section, meta.braces meta.parens punctuation.section, meta.braces meta.brackets punctuation.section, meta.braces meta.braces punctuation.section", 50 | "foreground": "#008080"}, 51 | 52 | {"name": "Constants", 53 | "scope": "constant", 54 | "foreground": "#00FF00"}, 55 | 56 | {"name": "Definitions", 57 | "scope": "entity.name", 58 | "foreground": "#FFFF00"}, 59 | 60 | {"name": "Mistakes", 61 | "scope": "invalid", 62 | "foreground": "#FFFFFF", 63 | "background": "#800000"}, 64 | 65 | {"scope": "markup.inserted", 66 | "foreground": "#00FF00"}, 67 | 68 | {"scope": "markup.deleted", 69 | "foreground": "#FF0000"}, 70 | 71 | {"scope": "markup.changed", 72 | "foreground": "#FFFF00"}, 73 | 74 | {"scope": "markup.ignored", 75 | "foreground": "#808080"}, 76 | 77 | {"scope": "markup.untracked", 78 | "foreground": "#808080"}, 79 | ] 80 | } -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2018 Nikita Prokopov 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Commander Color Scheme 2 | 3 | A retro color scheme for Sublime Text. 4 | 5 | ![](screenshot.png) 6 | 7 | Font: [More Perfect DOS VGA](https://laemeur.sdf.org/fonts/) 8 | 9 | Settings: 10 | 11 | ``` 12 | { 13 | "block_caret": true, 14 | "color_scheme": "Commander.sublime-color-scheme", 15 | "font_face": "More Perfect DOS VGA", 16 | "font_size": 16, 17 | } 18 | ``` 19 | 20 | ## Installation 21 | 22 | 1. Clone this repository to `~/Library/Application Support/Sublime Text/Packages` 23 | 2. `UI: Select Color Scheme` 24 | 3. `Commander` 25 | 26 | ## See also 27 | 28 | [Alabaster Color Scheme](https://github.com/tonsky/sublime-scheme-alabaster): minimal color scheme for coding. 29 | 30 | [Writer Color Scheme](https://github.com/tonsky/sublime-scheme-writer): minimal color scheme for long-term writing. 31 | 32 | [Profile Switcher](https://github.com/tonsky/sublime-profiles): Switch quickly between writing and coding profiles. 33 | 34 | [Fira Code](https://github.com/tonsky/FiraCode/): Best coding font in the world. 35 | 36 | ## Credits 37 | 38 | Made by [Niki Tonsky](https://twitter.com/nikitonsky). 39 | 40 | ## License 41 | 42 | [MIT License](./LICENSE.txt) --------------------------------------------------------------------------------