├── .editorconfig ├── .gitattributes ├── .github └── funding.yml ├── .gitignore ├── .npmrc ├── index.js ├── license ├── package.json ├── readme.md └── screenshot.png /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | 10 | [*.yml] 11 | indent_style = space 12 | indent_size = 2 13 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.js text eol=lf 3 | -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- 1 | github: sindresorhus 2 | open_collective: sindresorhus 3 | custom: https://sindresorhus.com/donate 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | const foregroundColor = '#eff0eb'; 3 | const backgroundColor = '#282a36'; 4 | const red = '#ff5c57'; 5 | const green = '#5af78e'; 6 | const yellow = '#f3f99d'; 7 | const blue = '#57c7ff'; 8 | const magenta = '#ff6ac1'; 9 | const cyan = '#9aedfe'; 10 | 11 | exports.decorateConfig = config => Object.assign({}, config, { 12 | backgroundColor, 13 | foregroundColor, 14 | borderColor: '#222430', 15 | cursorColor: '#97979b', 16 | cursorAccentColor: backgroundColor, 17 | selectionColor: 'rgba(151, 151, 155, 0.2)', 18 | colors: { 19 | black: backgroundColor, 20 | red, 21 | green, 22 | yellow, 23 | blue, 24 | magenta, 25 | cyan, 26 | white: '#f1f1f0', 27 | lightBlack: '#686868', 28 | lightRed: red, 29 | lightGreen: green, 30 | lightYellow: yellow, 31 | lightBlue: blue, 32 | lightMagenta: magenta, 33 | lightCyan: cyan, 34 | lightWhite: foregroundColor 35 | }, 36 | css: ` 37 | /* Hide title when only one tab */ 38 | .tabs_title { 39 | display: none !important; 40 | } 41 | 42 | /* Add a highlight line below the active tab */ 43 | .tab_tab::before { 44 | content: ''; 45 | position: absolute; 46 | bottom: 0; 47 | left: 0; 48 | right: 0; 49 | height: 1px; 50 | background-color: rgba(255, 106, 193, 0.4); 51 | transform: scaleX(0); 52 | will-change: transform; 53 | } 54 | .tab_tab.tab_active::before { 55 | transform: scaleX(1); 56 | transition: all 200ms cubic-bezier(0, 0, 0.2, 1); 57 | } 58 | 59 | /* Fade the title of inactive tabs and the content of inactive panes */ 60 | .tab_text, 61 | .term_term { 62 | opacity: 0.6; 63 | will-change: opacity; 64 | } 65 | .tab_active .tab_text, 66 | .term_active .term_term { 67 | opacity: 1; 68 | transition: opacity 0.12s ease-in-out; 69 | } 70 | 71 | /* Allow custom css / overrides */ 72 | ${config.css} 73 | ` 74 | }); 75 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Sindre Sorhus (sindresorhus.com) 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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hyper-snazzy", 3 | "version": "1.3.0", 4 | "description": "Elegant Hyper theme with bright colors", 5 | "license": "MIT", 6 | "repository": "sindresorhus/hyper-snazzy", 7 | "author": { 8 | "name": "Sindre Sorhus", 9 | "email": "sindresorhus@gmail.com", 10 | "url": "sindresorhus.com" 11 | }, 12 | "files": [ 13 | "index.js" 14 | ], 15 | "keywords": [ 16 | "hyper", 17 | "hyper-theme", 18 | "elegant" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # hyper-snazzy [![Mentioned in Awesome Hyper](https://awesome.re/mentioned-badge.svg)](https://github.com/bnb/awesome-hyper) 2 | 3 | > Elegant [Hyper](https://hyper.is) theme with bright colors 4 | 5 | ![](screenshot.png) 6 | 7 | 8 | ## Install 9 | 10 | ``` 11 | $ hyper install hyper-snazzy 12 | ``` 13 | 14 | 15 | ## Tip 16 | 17 | To get the exact same look as in the screenshot, you need to use the [Pure](https://github.com/sindresorhus/pure) prompt, Menlo font, and the [zsh-syntax-highlighting](https://github.com/zsh-users/zsh-syntax-highlighting) plugin to have commands highlighted. 18 | 19 | 20 | ## Related 21 | 22 | - [iterm2-snazzy](https://github.com/sindresorhus/iterm2-snazzy) - iTerm2 version 23 | - [terminal-snazzy](https://github.com/sindresorhus/terminal-snazzy) - Terminal version 24 | - [konsole-snazzy](https://github.com/miedzinski/konsole-snazzy) - Konsole version 25 | - [vscode-snazzy](https://github.com/Tyriar/vscode-snazzy) - VS Code version 26 | - [emacs-snazzy](https://github.com/weijiangan/emacs-snazzy) - Emacs version 27 | - [termite-snazzy](https://github.com/kbobrowski/termite-snazzy) - Termite version 28 | - [deepin-snazzy](https://github.com/xxczaki/deepin-snazzy) - Linux Deepin terminal version 29 | - [vim-snazzy](https://github.com/connorholyday/vim-snazzy) - Vim version 30 | - [snazzybuddy.nvim](https://github.com/bbenzikry/snazzybuddy.nvim) - Neovim version 31 | - [base16-snazzy](https://github.com/h404bi/base16-snazzy-scheme) - Base16 version 32 | - [kitty-snazzy](https://github.com/connorholyday/kitty-snazzy) - Kitty version 33 | - [gnome-terminal-snazzy](https://github.com/tobark/hyper-snazzy-gnome-terminal) - Gnome terminal version 34 | - [urxvt-snazzy](https://github.com/LeonGr/urxvt-snazzy) - Urxvt version 35 | - [alacritty-snazzy](https://github.com/alebelcor/alacritty-snazzy) - Alacritty version 36 | - [st-snazzy](https://github.com/Dko1905/st-snazzy) - Simple Terminal version (suckless st) 37 | - [tilix-snazzy](https://github.com/clrxbl/tilix-snazzy) - Tilix version 38 | - [terminus-snazzy](https://github.com/ThibzR/terminus-snazzy) - Terminus version 39 | - [windows-terminal-snazzy](https://github.com/Richienb/windows-terminal-snazzy) - Windows Terminal version 40 | - [warp-snazzy](https://github.com/GrimLink/warp-theme-snazzy) - Warp version 41 | - [tmux-snazzy](https://github.com/ivnvxd/tmux-snazzy) - Tmux version 42 | 43 | 44 | ## License 45 | 46 | MIT © [Sindre Sorhus](https://sindresorhus.com) 47 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/hyper-snazzy/aa7cbce9b23b20c6ee66c47f4265dee3bb2f0330/screenshot.png --------------------------------------------------------------------------------