├── LICENSE ├── README.md ├── img └── screenshot.png └── schemes.json /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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Monokai Windows Terminal 2 | Monokai Color Scheme for Windows Terminal. 3 | 4 | ![screenshot](https://raw.githubusercontent.com/yosukes-dev/monokai-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": "#262626", 14 | "black": "#1B1D1E", 15 | "blue": "#465457", 16 | "brightBlack": "#505354", 17 | "brightBlue": "#899CA1", 18 | "brightCyan": "#8CEDFF", 19 | "brightGreen": "#B6E354", 20 | "brightPurple": "#9E6FFE", 21 | "brightRed": "#FF5995", 22 | "brightWhite": "#F8F8F2", 23 | "brightYellow": "#FEED6C", 24 | "cyan": "#56C2D6", 25 | "foreground": "#F8F8F2", 26 | "green": "#82B414", 27 | "name": "Monokai", 28 | "purple": "#8C54FE", 29 | "red": "#F92672", 30 | "white": "#CCCCC6", 31 | "yellow": "#FD971F" 32 | } 33 | ], 34 | ``` 35 | #### 3. Set `colorScheme`. 36 | ```json 37 | "colorScheme": "Monokai", 38 | ``` 39 | -------------------------------------------------------------------------------- /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosukes-dev/monokai-windows-terminal/4631c27971a05270fcde29f488fcdee3f63059ed/img/screenshot.png -------------------------------------------------------------------------------- /schemes.json: -------------------------------------------------------------------------------- 1 | // Add custom color schemes to this array 2 | "schemes": [ 3 | { 4 | "background": "#262626", 5 | "black": "#1B1D1E", 6 | "blue": "#465457", 7 | "brightBlack": "#505354", 8 | "brightBlue": "#899CA1", 9 | "brightCyan": "#8CEDFF", 10 | "brightGreen": "#B6E354", 11 | "brightPurple": "#9E6FFE", 12 | "brightRed": "#FF5995", 13 | "brightWhite": "#F8F8F2", 14 | "brightYellow": "#FEED6C", 15 | "cyan": "#56C2D6", 16 | "foreground": "#F8F8F2", 17 | "green": "#82B414", 18 | "name": "Monokai", 19 | "purple": "#8C54FE", 20 | "red": "#F92672", 21 | "white": "#CCCCC6", 22 | "yellow": "#FD971F" 23 | } 24 | ], --------------------------------------------------------------------------------