├── .editorconfig ├── .github └── CODEOWNERS ├── .gitignore ├── .npmignore ├── .prettierrc ├── INSTALL.md ├── LICENSE.md ├── README.md ├── index.js ├── package.json └── screenshot.png /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Learn how to add code owners here: 2 | # https://help.github.com/en/articles/about-code-owners 3 | 4 | * @maykbrito 5 | .github/* @jpedroschmitz 6 | *.md @jpedroschmitz @maykbrito 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .github/ 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- 1 | ### [Hyper](https://hyper.is/) 2 | 3 | There are 2 different ways to install Omni on Hyper. 4 | 5 | #### 1. Install using the hyper CLI (recommended) 6 | 7 | ```shell 8 | $ hyper install hyper-omni-theme 9 | ``` 10 | 11 | #### 2. Install using config file 12 | 13 | Add `hyper-omni-theme` to the plugins list in your `~/.hyper.js` config file. 14 | 15 | ```shell 16 | plugins: [ 17 | 'hyper-omni-theme' 18 | ] 19 | ``` 20 | 21 | #### Activating theme 22 | 23 | After installing it, you need to activate the theme. You can do so by following these steps: 24 | 25 | 1. Start Hyper; 26 | 2. Go to `View -> Full Reload` or pressing `Cmd + Shft + R`. 27 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Omni Theme 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 |
3 | Omni Logo 4 |
5 | Omni for Hyper 6 |
7 |

8 | 9 |

10 | Dark theme for Hyper 11 |

12 | 13 |

14 | PRs welcome! 15 | 16 | License 17 |

18 | 19 |

20 | Install • 21 | Team • 22 | License 23 |

24 | 25 |

26 | Omni screnshoot for Hyper 27 |

28 | 29 | ## Install 30 | 31 | All instructions can be found at [INSTALL.md](./INSTALL.md). 32 | 33 | ## Team 34 | 35 | This theme is maintained by the following person(s) and a bunch of [awesome contributors](https://github.com/getomni/template/graphs/contributors). 36 | 37 | | [![Mayk Brito](https://github.com/maykbrito.png?size=100)](https://github.com/maykbrito) | [![João Pedro](https://github.com/jpedroschmitz.png?size=100)](https://github.com/jpedroschmitz) | 38 | | ---------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | 39 | | [Mayk Brito](https://github.com/maykbrito) | [João Pedro](https://github.com/jpedroschmitz) | 40 | 41 | ## License 42 | 43 | [MIT License](./LICENSE.md) 44 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const backgroundColor = '#191622'; 4 | const foregroundColor = '#E1E1E6'; 5 | const borderColor = '#483C67'; 6 | const cursorColor = '#f8f8f2'; 7 | const colors = { 8 | black: '#000000', 9 | red: '#ff5555', 10 | green: '#50fa7b', 11 | yellow: '#effa78', 12 | blue: '#bd93f9', 13 | magenta: '#ff79c6', 14 | cyan: '#8d79ba', 15 | white: 'bfbfbf', 16 | lightBlack: '#4d4d4d', 17 | lightRed: '#ff6e67', 18 | lightGreen: '#5af78e', 19 | lightYellow: '#eaf08d', 20 | lightBlue: '#caa9fa', 21 | lightMagenta: '#ff92d0', 22 | lightCyan: '#aa91e3', 23 | lightWhite: '#e6e6e6' 24 | }; 25 | 26 | exports.decorateConfig = config => { 27 | return Object.assign({}, config, { 28 | backgroundColor, 29 | foregroundColor, 30 | borderColor, 31 | cursorColor, 32 | colors, 33 | termCSS: ` 34 | ${config.termCSS || ''} 35 | `, 36 | css: ` 37 | ${config.css || ''} 38 | .tabs_list .tab_tab.tab_active .tab_text { 39 | background: ${backgroundColor}; 40 | } 41 | 42 | .tab_active:before { 43 | border-color: ${borderColor}; 44 | } 45 | ` 46 | }); 47 | }; 48 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hyper-omni-theme", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "homepage": "https://github.com/getomni/hyper#readme", 6 | "description": "Omni theme for Hyper", 7 | "repository": { 8 | "type": "git", 9 | "url": "https://github.com/getomni/hyper.git" 10 | }, 11 | "keywords": [ 12 | "hyperterm", 13 | "hyper", 14 | "hyper.app", 15 | "hyper omni", 16 | "hyper theme", 17 | "omni-theme" 18 | ], 19 | "author": "Mayk Brito ", 20 | "license": "MIT" 21 | } 22 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getomni/hyper/0d9b612872b53bcf19e05b78c4c56c251902f375/screenshot.png --------------------------------------------------------------------------------