├── img └── screenshot.png ├── LICENSE ├── scheme.json └── README.md /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosukes-dev/one-dark-windows-terminal/HEAD/img/screenshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Yosuke Sano 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 | -------------------------------------------------------------------------------- /scheme.json: -------------------------------------------------------------------------------- 1 | // Add custom color schemes to this array 2 | "schemes": [ 3 | { 4 | "background": "#1E2127", 5 | "black": "#000000", 6 | "blue": "#61AFEF", 7 | "brightBlack": "#5C6370", 8 | "brightBlue": "#61AFEF", 9 | "brightCyan": "#56B6C2", 10 | "brightGreen": "#98C379", 11 | "brightPurple": "#C678DD", 12 | "brightRed": "#E06C75", 13 | "brightWhite": "#FFFFFF", 14 | "brightYellow": "#D19A66", 15 | "cyan": "#56B6C2", 16 | "foreground": "#5C6370", 17 | "green": "#98C379", 18 | "name": "One Dark", 19 | "purple": "#C678DD", 20 | "red": "#E06C75", 21 | "white": "#ABB2BF", 22 | "yellow": "#D19A66" 23 | }, 24 | { 25 | "background": "#F9F9F9", 26 | "black": "#000000", 27 | "blue": "#4078F2", 28 | "brightBlack": "#383A42", 29 | "brightBlue": "#4078F2", 30 | "brightCyan": "#0184BC", 31 | "brightGreen": "#50A14F", 32 | "brightPurple": "#A626A4", 33 | "brightRed": "#E45649", 34 | "brightWhite": "#FFFFFF", 35 | "brightYellow": "#986801", 36 | "cyan": "#0184BC", 37 | "foreground": "#383A42", 38 | "green": "#50A14F", 39 | "name": "One Light", 40 | "purple": "#A626A4", 41 | "red": "#E45649", 42 | "white": "#A0A1A7", 43 | "yellow": "#986801" 44 | } 45 | ], -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # One Dark Windows Terminal 2 | One Dark Color Scheme for Windows Terminal inspired by Atom's One Dark and One Light theme. 3 | 4 | ![screenshot](https://raw.githubusercontent.com/yosukes-dev/one-dark-windows-terminal/master/img/screenshot.png) 5 | 6 | ### How To Use 7 | #### 1. Open Settings(profiles.json) 8 | #### 2. Copy Schemes from `schemes.json` file on this repo and paste into `schemes` section. 9 | ```json 10 | // Add custom color schemes to this array 11 | "schemes": [ 12 | { 13 | "background": "#1E2127", 14 | "black": "#000000", 15 | "blue": "#61AFEF", 16 | "brightBlack": "#5C6370", 17 | "brightBlue": "#61AFEF", 18 | "brightCyan": "#56B6C2", 19 | "brightGreen": "#98C379", 20 | "brightPurple": "#C678DD", 21 | "brightRed": "#E06C75", 22 | "brightWhite": "#FFFFFF", 23 | "brightYellow": "#D19A66", 24 | "cyan": "#56B6C2", 25 | "foreground": "#5C6370", 26 | "green": "#98C379", 27 | "name": "One Dark", 28 | "purple": "#C678DD", 29 | "red": "#E06C75", 30 | "white": "#ABB2BF", 31 | "yellow": "#D19A66" 32 | }, 33 | { 34 | "background": "#F9F9F9", 35 | "black": "#000000", 36 | "blue": "#4078F2", 37 | "brightBlack": "#383A42", 38 | "brightBlue": "#4078F2", 39 | "brightCyan": "#0184BC", 40 | "brightGreen": "#50A14F", 41 | "brightPurple": "#A626A4", 42 | "brightRed": "#E45649", 43 | "brightWhite": "#FFFFFF", 44 | "brightYellow": "#986801", 45 | "cyan": "#0184BC", 46 | "foreground": "#383A42", 47 | "green": "#50A14F", 48 | "name": "One Light", 49 | "purple": "#A626A4", 50 | "red": "#E45649", 51 | "white": "#A0A1A7", 52 | "yellow": "#986801" 53 | } 54 | ], 55 | ``` 56 | #### 3. Set `colorScheme`. 57 | ```json 58 | "colorScheme": "One Dark", 59 | ``` 60 | or 61 | ```json 62 | "colorScheme": "One Light", 63 | ``` 64 | --------------------------------------------------------------------------------