├── .gitignore ├── README.md ├── index.js ├── package.json └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | _site/ 3 | 4 | # Logfiles and tempfiles 5 | *.log 6 | /log/* 7 | !/log/.keep 8 | /tmp 9 | 10 | # Other unneeded files 11 | doc/ 12 | *.swp 13 | *~ 14 | .project 15 | .DS_Store 16 | .idea 17 | .secret 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HyperMonokai 2 | 3 | Monokai color theme for [HyperTerm](https://hyperterm.org). 4 | 5 |

HyperMonokai

6 | 7 | ## How to use 8 | 9 | Add `hypermonokai` to `plugins` in `~/.hyperterm.js`. 10 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | exports.decorateConfig = (config) => { 2 | return Object.assign({}, config, { 3 | cursorColor: '#a6e22e', 4 | colors: [ 5 | '#272822', 6 | '#d2304b', 7 | '#a6e22e', 8 | '#e6db74', 9 | '#ae81ff', 10 | '#f92672', 11 | '#66d9ef', 12 | '#f8f8f2', 13 | '#272822', 14 | '#d2304b', 15 | '#a6e22e', 16 | '#e6db74', 17 | '#ae81ff', 18 | '#f92672', 19 | '#66d9ef', 20 | '#f8f8f2' 21 | ] 22 | }); 23 | } 24 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hypermonokai", 3 | "version": "1.0.2", 4 | "description": "Monokai color theme for HyperTerm.", 5 | "main": "index.js", 6 | "scripts": {}, 7 | "repository": { 8 | "type": "git", 9 | "url": "git+https://github.com/ixkaito/hypermonokai.git" 10 | }, 11 | "keywords": [ 12 | "hyperterm", 13 | "monokai" 14 | ], 15 | "author": "Kite", 16 | "license": "MIT", 17 | "bugs": { 18 | "url": "https://github.com/ixkaito/hypermonokai/issues" 19 | }, 20 | "homepage": "https://ixkaito.github.io/hypermonokai" 21 | } 22 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015-2016 the contributors of the Frasco project 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 | --------------------------------------------------------------------------------