├── .gitattributes ├── .travis.yml ├── .gitignore ├── .github └── PULL_REQUEST_TEMPLATE.md ├── code-of-conduct.md ├── CONTRIBUTING.md ├── LICENSE ├── hyper-3-color-logo.svg ├── compositor.json └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.ai binary 3 | readme.md merge=union 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 2.2 3 | before_script: gem install awesome_bot 4 | script: awesome_bot README.md --allow-dupe -w issues/new,shields 5 | notifications: 6 | email: false 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # nyc test coverage 18 | .nyc_output 19 | 20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 21 | .grunt 22 | 23 | # node-waf configuration 24 | .lock-wscript 25 | 26 | # Compiled binary addons (http://nodejs.org/api/addons.html) 27 | build/Release 28 | 29 | # Dependency directories 30 | node_modules 31 | jspm_packages 32 | 33 | # Optional npm cache directory 34 | .npm 35 | 36 | # Optional REPL history 37 | .node_repl_history 38 | 39 | .DS_Store 40 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Checklist for submitting a resource to `awesome-hyper`: 4 | 5 | 6 | 7 | 8 | 9 | - [ ] **Title:** The title for the addition uses its npm title (`hyper-example`) or the resource's title. 10 | - [ ] **Link:** The link for the addition uses the npmjs.com link (`https://www.npmjs.com/package/hyper-example`) or the resource's full URI. 11 | - [ ] **Repository:** The `package.json` file of the resource contains [repository information](https://docs.npmjs.com/files/package.json#repository). 12 | - [ ] **Visual:** There is a visual representation of what the addition does in its source repository. 13 | - [ ] **Location:** The awesome addition is in the correct category or sub-category. 14 | - If it's a **plugin or resource**, put your awesome item at the **BOTTOM** of the correct section. 15 | - If it's a **theme**, insert it according to the **ALPHABETICAL** order. 16 | - [ ] **Description:** I've written a short (one sentence) description for the addition in the `README.md`. 17 | - [ ] **Downloads:** I've added a download stats badge in the second column (`[![npm](https://img.shields.io/npm/dm/hyper-example.svg?label=DL)]()`) 18 | -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | nationality, personal appearance, race, religion, or sexual identity and 10 | orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at hello@bnb.im. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at [http://contributor-covenant.org/version/1/4][version] 72 | 73 | [homepage]: http://contributor-covenant.org 74 | [version]: http://contributor-covenant.org/version/1/4/ 75 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Please note that this project is released with a [Contributor Code of Conduct](code-of-conduct.md). By participating in this project you agree to abide by its terms. 4 | 5 | 6 | ## Important! 7 | > The pull request should have a useful title. Pull requests with `Update readme.md` as title will be closed right away because I'm so tired of nobody reading this document. Please carefully read everything in `Adding to this list`. 8 | 9 | ## Table of Contents 10 | 11 | - [Adding to this list](#adding-to-this-list) 12 | - [Adding something to an awesome list](#adding-something-to-an-awesome-list) 13 | - [Updating your Pull Request](#updating-your-pull-request) 14 | 15 | ## Adding to this list 16 | 17 | Please ensure your pull request adheres to the following guidelines: 18 | 19 | - Search previous requests for additions to awesome-hyper before making a new one - your request may be a duplicate. 20 | - Make an individual pull request for each suggestion to `awesome-hyper`. 21 | - For Hyper **package** and **theme** names, please use the package name as published on npm, and as displayed in the URI of the package. 22 | - As an example, the title of `https://www.npmjs.com/package/hyper-snazzy` would be `hyper-snazzy` 23 | - For new suggestions, use the following formatting `[hyper-plugin-name](link) - Your awesome description | [![npm](https://img.shields.io/npm/dm/hyper-plugin-name.svg?label=DL)](link)` 24 | - As an example, here's how `hyper-snazzy` would be formatted: 25 | - `[hyper-snazzy](https://www.npmjs.com/package/hyper-snazzy) - A super snazzy theme for Hyper, with muted off-neon colors. | [![npm](https://img.shields.io/npm/dm/hyper-snazzy.svg?label=DL)](https://www.npmjs.com/package/hyper-snazzy)` 26 | - Link additions should be added to the **BOTTOM** or inserted according to the **ALPHABETICAL** order: 27 | - If it's a plugin or resource, put your awesome item at the **BOTTOM** of the correct section. 28 | - If it's a theme, insert it according to the **ALPHABETICAL** order. 29 | - New categories or improvements to the existing categorization are _always_ welcome. 30 | - Check your spelling and grammar. 31 | - Make sure your text editor is set to remove trailing whitespace. 32 | - The pull request and commit should have a useful title. 33 | 34 | Suggestions for ammendments to these guidelines are always welcome - feel free to submit an issue or pull request. 35 | 36 | ## How to: Add a plugin, theme, or resource to awesome-hyper 37 | 38 | If you have something awesome to contribute to awesome-hyper list, this is how you can do it. 39 | 40 | You'll need to have a GitHub account - you can [register here](https://github.com/join)! 41 | 42 | 1. Access awesome-hyper's GitHub page [here](https://github.com/bnb/awesome-hyper) 43 | 2. Click on the `README.md` file: ![Step 2 Click on Readme.md](https://cloud.githubusercontent.com/assets/170270/9402920/53a7e3ea-480c-11e5-9d81-aecf64be55eb.png) 44 | 3. Now click on the edit icon. ![Step 3 - Click on Edit](https://cloud.githubusercontent.com/assets/170270/9402927/6506af22-480c-11e5-8c18-7ea823530099.png) 45 | 4. You can start editing the text of the file in the in-browser editor. Make sure you follow guidelines above. You can use [GitHub Flavored Markdown](https://help.github.com/articles/github-flavored-markdown/). ![Step 4 - Edit the file](https://cloud.githubusercontent.com/assets/170270/9402932/7301c3a0-480c-11e5-81f5-7e343b71674f.png) 46 | 5. Say why you're proposing the changes, and then click on "Propose file change". ![Step 5 - Propose Changes](https://cloud.githubusercontent.com/assets/170270/9402937/7dd0652a-480c-11e5-9138-bd14244593d5.png) 47 | 6. Submit the [pull request](https://help.github.com/articles/using-pull-requests/)! 48 | 49 | ## Updating your Pull Request 50 | 51 | Sometimes, the maintainers of awesome-hyper will ask you to edit your Pull Request before it is included. This is normally due to spelling errors or because your PR didn't match the awesome-hyper list guidelines. We're always happy to help in any way we can. 52 | 53 | [Here](https://github.com/RichardLitt/knowledge/blob/master/github/amending-a-commit-guide.md) is a write up on how to change a Pull Request, and the different ways you can do that. 54 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | CC0 1.0 Universal 2 | 3 | Statement of Purpose 4 | 5 | The laws of most jurisdictions throughout the world automatically confer 6 | exclusive Copyright and Related Rights (defined below) upon the creator and 7 | subsequent owner(s) (each and all, an "owner") of an original work of 8 | authorship and/or a database (each, a "Work"). 9 | 10 | Certain owners wish to permanently relinquish those rights to a Work for the 11 | purpose of contributing to a commons of creative, cultural and scientific 12 | works ("Commons") that the public can reliably and without fear of later 13 | claims of infringement build upon, modify, incorporate in other works, reuse 14 | and redistribute as freely as possible in any form whatsoever and for any 15 | purposes, including without limitation commercial purposes. These owners may 16 | contribute to the Commons to promote the ideal of a free culture and the 17 | further production of creative, cultural and scientific works, or to gain 18 | reputation or greater distribution for their Work in part through the use and 19 | efforts of others. 20 | 21 | For these and/or other purposes and motivations, and without any expectation 22 | of additional consideration or compensation, the person associating CC0 with a 23 | Work (the "Affirmer"), to the extent that he or she is an owner of Copyright 24 | and Related Rights in the Work, voluntarily elects to apply CC0 to the Work 25 | and publicly distribute the Work under its terms, with knowledge of his or her 26 | Copyright and Related Rights in the Work and the meaning and intended legal 27 | effect of CC0 on those rights. 28 | 29 | 1. Copyright and Related Rights. A Work made available under CC0 may be 30 | protected by copyright and related or neighboring rights ("Copyright and 31 | Related Rights"). Copyright and Related Rights include, but are not limited 32 | to, the following: 33 | 34 | i. the right to reproduce, adapt, distribute, perform, display, communicate, 35 | and translate a Work; 36 | 37 | ii. moral rights retained by the original author(s) and/or performer(s); 38 | 39 | iii. publicity and privacy rights pertaining to a person's image or likeness 40 | depicted in a Work; 41 | 42 | iv. rights protecting against unfair competition in regards to a Work, 43 | subject to the limitations in paragraph 4(a), below; 44 | 45 | v. rights protecting the extraction, dissemination, use and reuse of data in 46 | a Work; 47 | 48 | vi. database rights (such as those arising under Directive 96/9/EC of the 49 | European Parliament and of the Council of 11 March 1996 on the legal 50 | protection of databases, and under any national implementation thereof, 51 | including any amended or successor version of such directive); and 52 | 53 | vii. other similar, equivalent or corresponding rights throughout the world 54 | based on applicable law or treaty, and any national implementations thereof. 55 | 56 | 2. Waiver. To the greatest extent permitted by, but not in contravention of, 57 | applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and 58 | unconditionally waives, abandons, and surrenders all of Affirmer's Copyright 59 | and Related Rights and associated claims and causes of action, whether now 60 | known or unknown (including existing as well as future claims and causes of 61 | action), in the Work (i) in all territories worldwide, (ii) for the maximum 62 | duration provided by applicable law or treaty (including future time 63 | extensions), (iii) in any current or future medium and for any number of 64 | copies, and (iv) for any purpose whatsoever, including without limitation 65 | commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes 66 | the Waiver for the benefit of each member of the public at large and to the 67 | detriment of Affirmer's heirs and successors, fully intending that such Waiver 68 | shall not be subject to revocation, rescission, cancellation, termination, or 69 | any other legal or equitable action to disrupt the quiet enjoyment of the Work 70 | by the public as contemplated by Affirmer's express Statement of Purpose. 71 | 72 | 3. Public License Fallback. Should any part of the Waiver for any reason be 73 | judged legally invalid or ineffective under applicable law, then the Waiver 74 | shall be preserved to the maximum extent permitted taking into account 75 | Affirmer's express Statement of Purpose. In addition, to the extent the Waiver 76 | is so judged Affirmer hereby grants to each affected person a royalty-free, 77 | non transferable, non sublicensable, non exclusive, irrevocable and 78 | unconditional license to exercise Affirmer's Copyright and Related Rights in 79 | the Work (i) in all territories worldwide, (ii) for the maximum duration 80 | provided by applicable law or treaty (including future time extensions), (iii) 81 | in any current or future medium and for any number of copies, and (iv) for any 82 | purpose whatsoever, including without limitation commercial, advertising or 83 | promotional purposes (the "License"). The License shall be deemed effective as 84 | of the date CC0 was applied by Affirmer to the Work. Should any part of the 85 | License for any reason be judged legally invalid or ineffective under 86 | applicable law, such partial invalidity or ineffectiveness shall not 87 | invalidate the remainder of the License, and in such case Affirmer hereby 88 | affirms that he or she will not (i) exercise any of his or her remaining 89 | Copyright and Related Rights in the Work or (ii) assert any associated claims 90 | and causes of action with respect to the Work, in either case contrary to 91 | Affirmer's express Statement of Purpose. 92 | 93 | 4. Limitations and Disclaimers. 94 | 95 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 96 | surrendered, licensed or otherwise affected by this document. 97 | 98 | b. Affirmer offers the Work as-is and makes no representations or warranties 99 | of any kind concerning the Work, express, implied, statutory or otherwise, 100 | including without limitation warranties of title, merchantability, fitness 101 | for a particular purpose, non infringement, or the absence of latent or 102 | other defects, accuracy, or the present or absence of errors, whether or not 103 | discoverable, all to the greatest extent permissible under applicable law. 104 | 105 | c. Affirmer disclaims responsibility for clearing rights of other persons 106 | that may apply to the Work or any use thereof, including without limitation 107 | any person's Copyright and Related Rights in the Work. Further, Affirmer 108 | disclaims responsibility for obtaining any necessary consents, permissions 109 | or other rights required for any use of the Work. 110 | 111 | d. Affirmer understands and acknowledges that Creative Commons is not a 112 | party to this document and has no duty or obligation with respect to this 113 | CC0 or use of the Work. 114 | 115 | For more information, please see 116 | 117 | -------------------------------------------------------------------------------- /hyper-3-color-logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /compositor.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bnb/awesome-hyper", 3 | "version": "0.1.4", 4 | "libraries": { 5 | "xv": "^1.1.25" 6 | }, 7 | "title": "Awesome Hyper", 8 | "branch": "master", 9 | "style": { 10 | "name": "Material", 11 | "componentSet": { 12 | "nav": "nav/DarkAbsoluteNav", 13 | "header": "header/GradientHeader", 14 | "article": "article/BasicArticle", 15 | "footer": "footer/BasicFooter" 16 | }, 17 | "fontFamily": "Roboto, sans-serif", 18 | "heading": { 19 | "fontWeight": 500, 20 | "letterSpacing": "-0.01em" 21 | }, 22 | "colors": { 23 | "text": "#212121", 24 | "background": "#fff", 25 | "primary": "#2196f3", 26 | "secondary": "#1565c0", 27 | "highlight": "#ff4081", 28 | "border": "#e0e0e0", 29 | "muted": "#f5f5f5" 30 | }, 31 | "layout": { 32 | "centered": true, 33 | "bannerHeight": "80vh", 34 | "maxWidth": 896 35 | } 36 | }, 37 | "content": [ 38 | { 39 | "component": "header", 40 | "heading": "awesome-hyper", 41 | "subhead": "🖥 Delightful Hyper plugins, themes, and resources", 42 | "children": [ 43 | { 44 | "component": "ui/TweetButton", 45 | "text": "awesome-hyper: 🖥 Delightful Hyper plugins, themes, and resources", 46 | "url": "" 47 | }, 48 | { 49 | "component": "ui/GithubButton", 50 | "user": "bnb", 51 | "repo": "awesome-hyper" 52 | } 53 | ] 54 | }, 55 | { 56 | "component": "article", 57 | "metadata": { 58 | "source": "github.readme" 59 | }, 60 | "html": "

Awesome Hyper

\n

\n
\n

A curated list of sweet Hyper packages, themes, and resources.

\n
\n

Inspired by the awesome list thing. You might also like awesome-node and awesome-npm, which both have CLI stuff you can use with Hyper!

\n

Please read the contribution guidelines before contributing.

\n

Check out the official Hyper site, check out Zeit, and their interesting Hosting product, Now.

\n

Want to add your awesome Hyper package, theme, or resource? Make the change and open a pull request!

\n

Like awesome-hyper? Reach out to @bitandbang, @matheusfrndes, and @iamstarkov on Twitter and say hi! 👋

\n\n

Contents

\n\n

Packages

\n

Know of another Hyper package? Help add it!

\n

Productivity

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Name and descriptionDownloads
hyperline - A status line at the bottom of your Hyper!
hypercwd - Open new tabs with the same directory as your current tab.
hyperterm-1password - Integration with 1Password (password manager).
hyperterm-visor - Show/hide your Hyper terminal with a global hotkey & more.
hyper-sync-settings - Easy way to backup and restore Hyper settings to Github.
hyperterm-summon - Summon your Hyper windows with a system-wide hotkey.
hyperterm-paste - Pasting into terminal made safe and easy.
hyperterm-alternatescroll - Mousewheel/trackpad scrolling for alternate screen (less, git log, nano, etc...).
hyperterm-lastpass - LastPass plugin for autofilling passwords in Hyper.
hyperterm-dibdabs - Unique colored dot on the left of the tab is added for quick identification of commonly used tabs based on its title.
hyperterm-tabs - Rearrange tabs by drag&dropping them.
hyperterm-focus-reporting - Adds focus reporting to Hyper - similar to iTerm2.
hyperlinks - Extension for Hyper that automatically links URLs.
hyper-statusline - Status line showing current cwd and git branch status.
hypernpm - Use keyboard shortcuts to run npm script commands.
hyper-startup - Executes any configured commands when Hyper loads.
hyper-fileio - Ephemeral file sharing direct from Hyper.
hyper-history - Show a list of history commands.
hyper-alt-click - Allows moving the cursor by alt+click'ing where you want it to go.
hyperterm-safepaste - Edit your pastes before executing them.
hyper-copycat - Duplicate text input across all sessions in a tab.
hyper-broadcast - Broadcast user inputs to multiple terms.
hyperdocs - Get documentation pages right in your terminal.
\n

⬆ Back to top

\n

Customization

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Name and descriptionDownloads
hpm-cli - A plugin manager for Hyper.
hypertheme - A theme manager for Hyper, published right off the bat. You should import your favorite text editor or terminal theme and add it to awesome-hyper!
hyper-blink - Make your cursor blink.
hyperborder - Add a gradient border with the same colors as in the Hyper logo.
hyperterm-transparent-bg - Add a transparent background to your Hyper through an interesting HTML hack.
hyperterm-close-on-left - Positions the close tab button on the left.
hyperterm-mactabs - Better tab styles, with macOS-inspired design and close buttons on the left, compatible with most themes.
hyperterm-final-say - Allows user-set overrides of any plugin or theme settings applied on top of the defaults ./.hyperterm.js.
hyperterm-overlay - A complete and customizable solution for overlay window in your Hyper.
hyperterm-tab-icons - Add icons to the header tabs for the current running process in Hyper.
config-hyperterm - Easily set/get Hyper config.
hyperfull - Will start Hyper in full screen.
hyperterm-crosshair - Shows the cursor position with an horizontal and vertical highlight/ruler.
hyperterm-cursor - Allows seeing the char behind your cursor by a color difference.
hypersixteen - A base16 loader for Hyper.
hyper-stylesheet - Adds support for an external hyper stylesheet.
hyperlayout - Layout presets for Hyper.
hyper-autohide-tabs - Autohide tab bar when there is only one tab.
hyperminimal - Removes the window header for more space and less distraction.
hyper-autoprofile - Change terminal appearance (backgroundColor, font...) according to current shell prompt.
hyper-tabs-enhanced - Configurable enhanced tabs with tab icons and more.
hyper-arc-dark-controls - Pretty window controls from the Arc Dark theme for Hyper.
hyper-mac-controls - Mac-like window controls for Hyper.
hyper-terminal-tabs - Brings Terminal.app look and feel to Hyper.
hyper-dark-scrollbar - Pretty scrollbar for Hyper.
hyper-pane - Navigate through panes with arrows, jump directly to a specific pane with digit or change focus on mouse hover.
hyper-always-on-top - Add a menu item to keep application windows always on top.
hyper-transparent-dynamic - Dynamically set transparent background based on current theming.
hyper-vsplit-fix - Fixes the vertical split border height in Hyper.
hyper-hide-title - Hide the window title when there is only one tab.
hyper-wal - Extension for using color schemes generated by wal in Hyper.
hyper-hover-header - Hidden header/title bar. Move the cursor to the top border of the window to have the header/title bar fade in.
\n

⬆ Back to top

\n

Development

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Name and descriptionDownloads
hyperterm-open-devtools - Open DevTools for currently showing web page with a hotkey.
hyperterm-install-devtools - Use Chrome DevTools extension on Hyper.
is-hyper - Check if your Node.js script is running in Hyper.
\n

⬆ Back to top

\n

Fun

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Name and descriptionDownloads
hyperpower - Add a pinch of kick-arse raw POWER to your Hyper! Adds the pixel-explosion and shake effect that's been implemented in several text editors.
htyt - Search and play youtube videos in Hyper.
hyper-john - A 10% chance of getting hit with the John Cena theme when opening tabs, windows and splits.
hyper-command-gifs - Gives you matching GIFs for your terminal commands.
hyper-cat - Turn your terminal into nyan cat while typing.
\n

⬆ Back to top

\n

Themes

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Name and descriptionDownloads
an-old-hype - A Hyper theme inspired by a galaxy far far away... and by Jesse Leites atom syntax theme.
hyper-atom-dark-transparent - Hyper theme based on the hyperterm-atom-dark, but with transparency.
hyper-aww - A theme that changes the terminal background to a different cute animal gif each time you open Hyper.
hyper-ayu - Theme based on the Ayu Theme for Sublime Text.
hyper-captain-sweetheart - Tuff but sweet Hyper theme.
hyper-chesterish - Saturated theme based on Chester syntax.
hyper-clean - A clean theme with IBM Design colors.
hyper-criollo - Theme based in vaporwave colors.
hyper-darkmatter - Dark - Darkmatter theme for Hyper, inspired by Sublime Darkmatter.
hyper-dracula - A dark theme for Hyper based on the Dracula theme.
hyper-firewatch - A dark Hyper theme inspired by Campo Santo's Firewatch video game.
hyper-flat-2 - Another Flat theme for Hyper based on Flat theme for Terminal.
hyper-flat - A Flat theme for Hyper.
hyper-frontend-delight - Dark - Based on Frontend Delight iTerm2 color scheme.
hyper-hybrid-reduced-contrast - A port of the reduced contrast version of vim-hybrid.
hyper-loved - A dark, elegant theme.
hyper-macos - Native macOS theme with vibrancy support.
hyper-material-box - The most hackable theme for your favorite terminal Hyper.
hyper-material-theme - Dark - The most epic material theme now on Hyper App.
hyper-materialshell - A dark material design theme with a good contrast and color pops at the important parts. Designed to be easy on the eyes, based on materialshell.
hyper-midnight - A minimalist theme for the Hyper terminal.
hyper-monochrome - Monochrome theme, based on vim-monochrome.
hyper-nord - Nord theme for Hyper.
hyper-oceans16 - Saturated theme based on Base16 Ocean syntax.
hyper-one-light - Light - A very cute theme with extra light background based on the Atom One Light pallete.
hyper-papercolor - PaperColor theme for Hyper.
hyper-peacock - A Peacock theme for Hyper.
hyper-polarbear - A beautiful white theme for Hyper.
hyper-ramda - Theme inspired by the RamdaJS REPL.
hyper-seashells - A Hyper port of the iTerm2 SeaShells color scheme.
hyper-sierra-vibrancy - hyper-sierra with vibrancy.
hyper-sierra - A dark theme for Hyper inspired by the Sierra Nevada.
hyper-snazzy - Dark - Elegant theme with bright colors.
hyper-solarized-dark - Pleasant and carefully chosen colors based on the popular solarized palette.
hyper-solarized-light - Pleasant and carefully chosen colors based on the popular solarized palette.
hyper-thirtyone - A slightly modified classic linux terminal theme for Hyper.
hyper-white-theme - White & Purple theme for Hyper.
hyper-zenburn - A classic low-contrast theme originally made for vim adapted for Hyper.
hyper-zigorat - A minimal syntax theme for Hyper.
hyperambient – Dark/Light - A theme that reacts to ambient light changes.
hyperatompunk - Hyper extension to make your terminal look like a CRT in Fallout.
hyperblue-vibrancy - The same cool tones from hyperblue, now with vibrancy!
hyperblue – Dark, cool hues. Turns Hyper blue.
hyperganymede - A color scheme inspired by the icy coldness of the moons of Jupiter.
hyperhue – Dark/Rainbow - A theme that reacts to the colors of your Philips Hue lights.
hypernasa - A theme which replaces the terminal background with NASA's Picture of the Day.
hyperpanic - Dark - A very pretty theme close to the Panic theme's colors. Dark blue background with very bright highlight colors.
hyperpunk - Hyper extension to make your terminal look Cyberpunk / Sci-fi.
hypersolar-dark - A dark theme based loosely on Solarized Dark, with a fix for the usual solarized dark colours with blacks that actually show up in your terminal!
hyperterm-adventurous - An adventure time inspired theme based on the Adventurous Atom theme.
hyperterm-atom-dark - Dark - Really beautiful import of Atom One Dark theme from the official Atom theme.
hyperterm-base16-tomorrow-dark – Dark - Hyper port of Atom's Base16 Tomorrow Dark Theme, with a pretty muted pastel pallette.
hyperterm-bold-tab - Bold's your active tab text. Makes keeping track of your current tab painless.
hyperterm-cobalt2-theme - Dusty Blue, dark with vibrant pops of colour for the important stuff. Goes well with Cobalt2 ZSH theme.
hyperterm-colors - Dark - Sweet dark color scheme with a chocolate-y brown background and a pretty set of muted colors!
hyperterm-dark-fusion - Hyperterm theme based on atom-dark-fusion.
hyperterm-dark-macos - A theme that pairs nicely with macOS dark mode.
hyperterm-deep-space - Dark - Dark, muted theme with good color matching.
hyperterm-duotone-darkspace - Dark/Orange - A beautiful dark theme inspired by Duotone Themes by Simurai. More color variations can be found here.
hyperterm-earthsong - A natural and calming theme for Hyper. Ported from iTerm's Earthsong theme.
hyperterm-electron-highlighter - Dark - Port of Atom One Dark syntax colors with more vibrant colors.
hyperterm-firewatch – Dark – Glowing, dark theme heavily inspired by the Firewatch game and the atom syntax theme based on it.
hyperterm-gooey - A dark theme with striking green and purple, based off atom-dark.
hyperterm-gruvbox-dark - Dark - Hyper theme with retro, earthy groove colors based on the gruvbox vim color scheme.
hyperterm-gruvbox - Theme based on gruvbox with dark, light styles and contrast options.
hyperterm-hipster - A hipster theme based on the hipster-syntax theme for Atom.
hyperterm-hybrid – Dark - Beautiful theme, based on vim-hybrid, that combines Tomorrow-Night, Codecademy, Jellybeans, and Solarized themes together.
hyperterm-material-spacegray - A port of the low-contrast Material Spacegray theme.
hyperterm-material - Dark - Brings the famous Material Design colors scheme in Hyper.
hyperterm-mild-dark - A mild dark theme for Hyper.
hyperterm-monokai - Dark - A port of the popular monokai theme. The colors are warm, relaxing and pleasing to the eyes.
hyperterm-oceanic-next - Dark blue theme optimised for ES2015. Ported from Oceanic Next.
hyperterm-panda — Panda syntax theme a superminimal, dark Syntax Theme — Hyper port.
hyperterm-retro - A retro Hyper theme inspired by the cool-retro-term terminal emulator.
hyperterm-sourcerer - A 16-bit dark theme based on xero/sourcerer.
hyperterm-spacegray – Port of the popular Spacegray theme, optimized for terminal usage.
hyperterm-tomorrow-night - Dark - Port of the popular Tomorrow Night theme.
hyperterm-unlease - A fresh theme for Hyper that makes you feel like there's one of those pine tree car air fresheners hanging from your terminal.
hyperterm-wp-theme - An adaptation of the popular JetBrains Darcula Theme with support for colored tabs.
\n

Know of another really awesome theme? Get it on awesome-hyper!

\n

⬆ Back to top

\n

Resources

\n\n

⬆ Back to top

\n" 61 | }, 62 | { 63 | "component": "footer", 64 | "links": [ 65 | { 66 | "href": "https://github.com/bnb/awesome-hyper", 67 | "text": "GitHub" 68 | }, 69 | { 70 | "href": "https://github.com/bnb", 71 | "text": "bnb" 72 | }, 73 | { 74 | "href": "https://github.com/matheuss", 75 | "text": "matheuss" 76 | }, 77 | { 78 | "href": "https://github.com/darahak", 79 | "text": "darahak" 80 | }, 81 | { 82 | "href": "https://github.com/iamstarkov", 83 | "text": "iamstarkov" 84 | } 85 | ], 86 | "image": "http://imgur.com/a/MkqD9", 87 | "meta": "Awesome Hyper - a curated list of sweet Hyper packages, themes, and resources.", 88 | "heading": "" 89 | } 90 | ] 91 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome Hyper [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) [![Awesome](https://img.shields.io/travis/bnb/awesome-hyper.svg)](https://travis-ci.org/bnb/awesome-hyper) 2 | 3 | [](https://hyper.is) 4 | 5 | > A curated list of sweet Hyper [packages](#packages), [themes](#themes), and [resources](#resources). 6 | 7 | *Inspired by the [awesome](https://github.com/sindresorhus/awesome) list thing. You might also like [awesome-node](https://github.com/sindresorhus/awesome-nodejs) and [awesome-npm](https://github.com/sindresorhus/awesome-npm), which both have CLI stuff you can use with Hyper!* 8 | 9 | *Please read the [contribution guidelines](CONTRIBUTING.md) before contributing.* 10 | 11 | **Check out the official [Hyper site](https://hyper.is), check out [Zeit](https://zeit.co), and their interesting Hosting product, [Now](https://zeit.co/home).** 12 | 13 | Want to add your awesome Hyper package, theme, or resource? Make the change and [open a pull request](https://opensource.guide/how-to-contribute/#opening-a-pull-request)! 14 | 15 | Like `awesome-hyper`? Reach out to [@bitandbang](https://twitter.com/bitandbang), [@matheusfrndes](https://twitter.com/matheusfrndes), and [@iamstarkov](https://twitter.com/iamstarkov) on Twitter and say *hi*! 👋 16 | 17 | 22 | 23 | # Contents 24 | 25 | - [Packages](#packages) 26 | - [Productivity](#productivity) 27 | - [Customization](#customization) 28 | - [Development](#development) 29 | - [Fun](#fun) 30 | - [Themes](#themes) 31 | - [Resources](#resources) 32 | 33 | # Packages 34 | Know of another Hyper package? [Help add it!](https://github.com/bnb/awesome-hyper/issues/new) 35 | 36 | ## Productivity 37 | 38 | Name and description | Downloads 39 | -------------------- | ------------- 40 | [hyperline](https://www.npmjs.com/package/hyperline) - A status line at the bottom of your Hyper! | [![npm](https://img.shields.io/npm/dm/hyperline.svg?label=DL)](https://www.npmjs.com/package/hyperline) 41 | [hypercwd](https://www.npmjs.com/package/hypercwd) - Open new tabs with the same directory as your current tab. | [![npm](https://img.shields.io/npm/dm/hypercwd.svg?label=DL)](https://www.npmjs.com/package/hypercwd) 42 | [hyperterm-visor](https://www.npmjs.com/package/hyperterm-visor) - Show/hide your Hyper terminal with a global hotkey & more. | [![npm](https://img.shields.io/npm/dm/hyperterm-visor.svg?label=DL)](https://www.npmjs.com/package/hyperterm-visor) 43 | [hyper-sync-settings](https://www.npmjs.com/package/hyper-sync-settings) - Easy way to backup and restore Hyper settings to Github. | [![npm](https://img.shields.io/npm/dm/hyper-sync-settings.svg?label=DL)](https://www.npmjs.com/package/hyper-sync-settings) 44 | [hyperterm-summon](https://www.npmjs.com/package/hyperterm-summon) - Summon your Hyper windows with a system-wide hotkey. | [![npm](https://img.shields.io/npm/dm/hyperterm-summon.svg?label=DL)](https://www.npmjs.com/package/hyperterm-summon) 45 | [hyperterm-paste](https://www.npmjs.com/package/hyperterm-paste) - Pasting into terminal made safe and easy. | [![npm](https://img.shields.io/npm/dm/hyperterm-paste.svg?label=DL)](https://www.npmjs.com/package/hyperterm-paste) 46 | [hyperterm-lastpass](https://www.npmjs.com/package/hyperterm-lastpass) - LastPass plugin for autofilling passwords in Hyper. | [![npm](https://img.shields.io/npm/dm/hyperterm-lastpass.svg?label=DL)](https://www.npmjs.com/package/hyperterm-lastpass) 47 | [hyperterm-dibdabs](https://www.npmjs.com/package/hyperterm-dibdabs) - Unique colored dot on the left of the tab is added for quick identification of commonly used tabs based on its title. | [![npm](https://img.shields.io/npm/dm/hyperterm-dibdabs.svg?label=DL)](https://www.npmjs.com/package/hyperterm-dibdabs) 48 | [hyperterm-tabs](https://www.npmjs.com/package/hyperterm-tabs) - Rearrange tabs by drag&dropping them. | [![npm](https://img.shields.io/npm/dm/hyperterm-tabs.svg?label=DL)](https://www.npmjs.com/package/hyperterm-tabs) 49 | [hyperterm-focus-reporting](https://www.npmjs.com/package/hyperterm-focus-reporting) - Adds focus reporting to Hyper - similar to iTerm2. | [![npm](https://img.shields.io/npm/dm/hyperterm-focus-reporting.svg?label=DL)](https://www.npmjs.com/package/hyperterm-focus-reporting) 50 | [hyperlinks](https://www.npmjs.com/package/hyperlinks) - Extension for Hyper that automatically links URLs. | [![npm](https://img.shields.io/npm/dm/hyperlinks.svg?label=DL)](https://www.npmjs.com/package/hyperlinks) 51 | [hyper-statusline](https://www.npmjs.com/package/hyper-statusline) - Status line showing current cwd and git branch status. | [![npm](https://img.shields.io/npm/dm/hyper-statusline.svg?label=DL)](https://www.npmjs.com/package/hyper-statusline) 52 | [hyper-statusline-extended](https://www.npmjs.com/package/hyper-statusline-extended) hyper-statusline rewritten and extended with more features for Hyper 3. | [![npm](https://img.shields.io/npm/dm/hyper-statusline-extended.svg?label=DL)]((https://www.npmjs.com/package/hyper-statusline-extended)) 53 | [hypernpm](https://www.npmjs.com/package/hypernpm) - Use keyboard shortcuts to run npm script commands. | [![npm](https://img.shields.io/npm/dm/hypernpm.svg?label=DL)](https://www.npmjs.com/package/hypernpm) 54 | [hyper-startup](https://www.npmjs.com/package/hyper-startup) - Executes any configured commands when Hyper loads. | [![npm](https://img.shields.io/npm/dm/hyper-startup.svg?label=DL)](https://www.npmjs.com/package/hyper-startup) 55 | [hyper-fileio](https://www.npmjs.com/package/hyper-fileio) - Ephemeral file sharing direct from Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-fileio.svg?label=DL)](https://www.npmjs.com/package/hyper-fileio) 56 | [hyper-history](https://www.npmjs.com/package/hyper-history) - Show a list of history commands. | [![npm](https://img.shields.io/npm/dm/hyper-history.svg?label=DL)](https://www.npmjs.com/package/hyper-history) 57 | [hyper-alt-click](https://www.npmjs.com/package/hyper-alt-click) - Allows moving the cursor by alt+click'ing where you want it to go. | [![npm](https://img.shields.io/npm/dm/hyper-alt-click.svg?label=DL)](https://www.npmjs.com/package/hyper-alt-click) 58 | [hyperterm-safepaste](https://www.npmjs.com/package/hyperterm-safepaste) - Edit your pastes before executing them. | [![npm](https://img.shields.io/npm/dm/hyperterm-safepaste.svg?label=DL)](https://www.npmjs.com/package/hyperterm-safepaste) 59 | [hyper-broadcast](https://www.npmjs.com/package/hyper-broadcast) - Broadcast user inputs to multiple terms. | [![npm](https://img.shields.io/npm/dm/hyper-broadcast.svg?label=DL)](https://www.npmjs.com/package/hyper-broadcast) 60 | [hyperdocs](https://www.npmjs.com/package/hyperdocs) - Get documentation pages right in your terminal. | [![npm](https://img.shields.io/npm/dm/hyperdocs.svg?label=DL)](https://www.npmjs.com/package/hyperdocs) 61 | [hyper-search](https://www.npmjs.com/package/hyper-search) - Search text in your terminal. | [![npm](https://img.shields.io/npm/dm/hyper-search.svg?label=DL)](https://www.npmjs.com/package/hyper-search) 62 | [hypergoogle](https://www.npmjs.com/package/hypergoogle) - Search Google from your terminal. | [![npm](https://img.shields.io/npm/dm/hypergoogle.svg?label=DL)](https://www.npmjs.com/package/hypergoogle) 63 | [hyper-quit](https://www.npmjs.com/package/hyper-quit) - Quit Hyper on macOS when last window closes. | [![npm](https://img.shields.io/npm/dm/hyper-quit.svg?label=DL)](https://www.npmjs.com/package/hyper-quit) 64 | [hyper-confirm](https://www.npmjs.com/package/hyper-confirm) - Displays a confirmation dialog before quitting Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-confirm.svg?label=DL)](https://www.npmjs.com/package/hyper-confirm) 65 | [hyper-match](https://www.npmjs.com/package/hyper-match) - Links patterns such as urls, emails and file paths to configured commands. | [![npm](https://img.shields.io/npm/dm/hyper-match.svg?label=DL)](https://www.npmjs.com/package/hyper-match) 66 | [hyper-savetext](https://www.npmjs.com/package/hyper-savetext) - Save your terminal's text to a file. | [![npm](https://img.shields.io/npm/dm/hyper-savetext.svg?label=DL)](https://www.npmjs.com/package/hyper-savetext) 67 | [hyper-visual](https://www.npmjs.com/package/hyper-visual) - CLI commands from the history and the context now listed in a clickable GUI. | [![npm](https://img.shields.io/npm/dm/hyper-visual.svg?label=DL)](https://www.npmjs.com/package/hyper-visual) 68 | [hyper-init](https://www.npmjs.com/package/hyper-init) - The ultimate and most complete extension to initialize commands before and after Hyper terminal starts. | [![npm](https://img.shields.io/npm/dm/hyper-init.svg?label=DL)](https://www.npmjs.com/package/hyper-init) 69 | [hyper-gcp-status-line](https://www.npmjs.com/package/hyper-gcp-status-line) - Status line showing the locally configured GCP project, GCE zone, and Kubernetes context, as well as current Google Cloud availability. | [![npm](https://img.shields.io/npm/dm/hyper-gcp-status-line.svg?label=DL)](https://www.npmjs.com/package/hyper-gcp-status-line) 70 | [hyperalfred](https://www.npmjs.com/package/hyperalfred) - Open Hyper from Alfred 3. | [![npm](https://img.shields.io/npm/dm/hyperalfred.svg?label=DL)](https://www.npmjs.com/package/hyperalfred) 71 | [hyperinator](https://www.npmjs.com/package/hyperinator) - Layout automation tool likes tmuxinator for Hyper. | [![npm](https://img.shields.io/npm/dm/hyperinator.svg?label=DL)](https://www.npmjs.com/package/hyperinator) 72 | [hyper-drop-file](https://www.npmjs.com/package/hyper-drop-file) - Drop file path from file explorer into your terminal. | [![npm](https://img.shields.io/npm/dm/hyper-drop-file.svg?label=DL)](https://www.npmjs.com/package/hyper-drop-file) 73 | 74 | [⬆ Back to top](#contents) 75 | 76 | ## Customization 77 | 78 | Name and description | Downloads 79 | -------------------- | ------------- 80 | [hypertheme](https://www.npmjs.com/package/hypertheme) - A theme manager for Hyper, published right off the bat. You should import your favorite text editor or terminal theme and [add it to awesome-hyper](https://github.com/bnb/awesome-hyper/issues/new)! | [![npm](https://img.shields.io/npm/dm/hypertheme.svg?label=DL)](https://www.npmjs.com/package/hypertheme) 81 | [hyper-blink](https://www.npmjs.com/package/hyper-blink) - Make your cursor blink. | [![npm](https://img.shields.io/npm/dm/hyper-blink.svg?label=DL)](https://www.npmjs.com/package/hyper-blink) 82 | [hyperborder](https://www.npmjs.com/package/hyperborder) - Add a gradient border with the same colors as in the Hyper logo. | [![npm](https://img.shields.io/npm/dm/hyperborder.svg?label=DL)](https://www.npmjs.com/package/hyperborder) 83 | [hyper-transparent-bg](https://www.npmjs.com/package/hyper-transparent-bg) - Add a transparent background to your Hyper through an interesting HTML hack. | [![npm](https://img.shields.io/npm/dm/hyper-transparent-bg.svg?label=DL)](https://www.npmjs.com/package/hyper-transparent-bg) 84 | [hyperterm-close-on-left](https://www.npmjs.com/package/hyperterm-close-on-left) - Positions the close tab button on the left. | [![npm](https://img.shields.io/npm/dm/hyperterm-close-on-left.svg?label=DL)](https://www.npmjs.com/package/hyperterm-close-on-left) 85 | [hyperterm-mactabs](https://www.npmjs.com/package/hyperterm-mactabs) - Better tab styles, with macOS-inspired design and close buttons on the left, compatible with most themes. | [![npm](https://img.shields.io/npm/dm/hyperterm-mactabs.svg?label=DL)](https://www.npmjs.com/package/hyperterm-mactabs) 86 | [hyper-final-say](https://www.npmjs.com/package/hyper-final-say) - Allows user-set overrides of any plugin or theme settings applied on top of the defaults `./.hyperterm.js`. | [![npm](https://img.shields.io/npm/dm/hyper-final-say.svg?label=DL)](https://www.npmjs.com/package/hyper-final-say) 87 | [hyperterm-overlay](https://www.npmjs.com/package/hyperterm-overlay) - A complete and customizable solution for overlay window in your Hyper. | [![npm](https://img.shields.io/npm/dm/hyperterm-overlay.svg?label=DL)](https://www.npmjs.com/package/hyperterm-overlay) 88 | [hyper-overlay](https://www.npmjs.com/package/hyper-overlay) - An overlay solution for Hyper 2. | [![npm](https://img.shields.io/npm/dm/hyper-overlay.svg?label=DL)](https://www.npmjs.com/package/hyper-overlay) 89 | [hyper-tab-icons](https://www.npmjs.com/package/hyper-tab-icons) - Add icons to the header tabs for the current running process in Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-tab-icons.svg?label=DL)](https://www.npmjs.com/package/hyper-tab-icons) 90 | [config-hyperterm](https://www.npmjs.com/package/config-hyperterm) - Easily set/get `Hyper` config. | [![npm](https://img.shields.io/npm/dm/config-hyperterm.svg?label=DL)](https://www.npmjs.com/package/config-hyperterm) 91 | [hyperfullscreen](https://www.npmjs.com/package/hyperfullscreen) - Will start Hyper in full screen. | [![npm](https://img.shields.io/npm/dm/hyperfullscreen.svg?label=DL)](https://www.npmjs.com/package/hyperfullscreen) 92 | [hyperterm-crosshair](https://www.npmjs.com/package/hyperterm-crosshair) - Shows the cursor position with an horizontal and vertical highlight/ruler. | [![npm](https://img.shields.io/npm/dm/hyperterm-crosshair.svg?label=DL)](https://www.npmjs.com/package/hyperterm-crosshair) 93 | [hyperterm-cursor](https://www.npmjs.com/package/hyperterm-cursor) - Allows seeing the char behind your cursor by a color difference. | [![npm](https://img.shields.io/npm/dm/hyperterm-cursor.svg?label=DL)](https://www.npmjs.com/package/hyperterm-cursor) 94 | [hypersixteen](https://www.npmjs.com/package/hypersixteen) - A base16 loader for Hyper. | [![npm](https://img.shields.io/npm/dm/hypersixteen.svg?label=DL)](https://www.npmjs.com/package/hypersixteen) 95 | [hyper-stylesheet](https://www.npmjs.com/package/hyper-stylesheet) - Adds support for an external hyper stylesheet. | [![npm](https://img.shields.io/npm/dm/hyper-stylesheet.svg?label=DL)](https://www.npmjs.com/package/hyper-stylesheet) 96 | [hyperlayout](https://www.npmjs.com/package/hyperlayout) - Layout presets for Hyper. | [![npm](https://img.shields.io/npm/dm/hyperlayout.svg?label=DL)](https://www.npmjs.com/package/hyperlayout) 97 | [hyper-autohide-tabs](https://www.npmjs.com/package/hyper-autohide-tabs) - Autohide tab bar when there is only one tab. | [![npm](https://img.shields.io/npm/dm/hyper-autohide-tabs.svg?label=DL)](https://www.npmjs.com/package/hyper-autohide-tabs) 98 | [hyperminimal](https://www.npmjs.com/package/hyperminimal) - Removes the window header for more space and less distraction. | [![npm](https://img.shields.io/npm/dm/hyperminimal.svg?label=DL)](https://www.npmjs.com/package/hyperminimal) 99 | [hyper-autoprofile](https://www.npmjs.com/package/hyper-autoprofile) - Change terminal appearance (backgroundColor, font...) according to current shell prompt. | [![npm](https://img.shields.io/npm/dm/hyper-autoprofile.svg?label=DL)](https://www.npmjs.com/package/hyper-autoprofile) 100 | [hyper-tabs-enhanced](https://www.npmjs.com/package/hyper-tabs-enhanced) - Configurable enhanced tabs with tab icons and more. | [![npm](https://img.shields.io/npm/dm/hyper-tabs-enhanced.svg?label=DL)](https://www.npmjs.com/package/hyper-tabs-enhanced) 101 | [hyper-arc-dark-controls](https://www.npmjs.com/package/hyper-arc-dark-controls) - Pretty window controls from the Arc Dark theme for Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-arc-dark-controls.svg?label=DL)](https://www.npmjs.com/package/hyper-arc-dark-controls) 102 | [hyper-mac-controls](https://www.npmjs.com/package/hyper-mac-controls) - Mac-like window controls for Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-mac-controls.svg?label=DL)](https://www.npmjs.com/package/hyper-mac-controls) 103 | [hyper-terminal-tabs](https://www.npmjs.com/package/hyper-terminal-tabs) - Brings Terminal.app look and feel to Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-terminal-tabs.svg?label=DL)](https://www.npmjs.com/package/hyper-terminal-tabs) 104 | [hyper-dark-scrollbar](https://www.npmjs.com/package/hyper-dark-scrollbar) - Pretty scrollbar for Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-dark-scrollbar.svg?label=DL)](https://www.npmjs.com/package/hyper-dark-scrollbar) 105 | [hyper-pane](https://www.npmjs.com/package/hyper-pane) - Navigate through panes with arrows, jump directly to a specific pane with digit or change focus on mouse hover. | [![npm](https://img.shields.io/npm/dm/hyper-pane.svg?label=DL)](https://www.npmjs.com/package/hyper-pane) 106 | [hyper-always-on-top](https://www.npmjs.com/package/hyper-always-on-top) - Add a menu item to keep application windows always on top. | [![npm](https://img.shields.io/npm/dm/hyper-always-on-top.svg?label=DL)](https://www.npmjs.com/package/hyper-always-on-top) 107 | [hyper-transparent-dynamic](https://www.npmjs.com/package/hyper-transparent-dynamic) - Dynamically set transparent background based on current theming. | [![npm](https://img.shields.io/npm/dm/hyper-transparent-dynamic.svg?label=DL)](https://www.npmjs.com/package/hyper-transparent-dynamic) 108 | [hyper-vsplit-fix](https://www.npmjs.com/package/hyper-vsplit-fix) - Fixes the vertical split border height in Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-vsplit-fix.svg?label=DL)](https://www.npmjs.com/package/hyper-vsplit-fix) 109 | [hyper-hide-title](https://www.npmjs.com/package/hyper-hide-title) - Hide the window title when there is only one tab. | [![npm](https://img.shields.io/npm/dm/hyper-hide-title.svg?label=DL)](https://www.npmjs.com/package/hyper-hide-title) 110 | [hyper-wal](https://www.npmjs.com/package/hyper-wal) - Extension for using color schemes generated by [wal](https://github.com/dylanaraps/wal) in Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-wal.svg?label=DL)](https://www.npmjs.com/package/hyper-wal) 111 | [hyper-hover-header](https://www.npmjs.com/package/hyper-hover-header) - Hidden header/title bar. Move the cursor to the top border of the window to have the header/title bar fade in. | [![npm](https://img.shields.io/npm/dm/hyper-hover-header.svg?label=DL)](https://www.npmjs.com/package/hyper-hover-header) 112 | [hyper-transparent](https://www.npmjs.com/package/hyper-transparent) - [Hyper](https://hyper.is) plugin to easily set window transparency and vibrancy. | [![npm](https://img.shields.io/npm/dm/hyper-transparent.svg?label=DL)](https://www.npmjs.com/package/hyper-transparent) 113 | [hyper-spotify](https://www.npmjs.com/package/hyper-spotify) - Displays currently playing song on Spotify at the bottom of the terminal and allows you to control your favourite music. | [![npm](https://img.shields.io/npm/dm/hyper-spotify.svg?label=DL)](https://www.npmjs.com/package/hyper-spotify) 114 | [hyper-background](https://www.npmjs.com/package/hyper-background) - Change the background of your Hyper terminal! | [![npm](https://img.shields.io/npm/dm/hyper-background.svg?label=DL)](https://www.npmjs.com/package/hyper-background) 115 | [hyper-vertical-tabs](https://www.npmjs.com/package/hyper-vertical-tabs) - Put the tabs on a sidebar to the left, as is possible in iTerm2 and ROXTerm. | [![npm](https://img.shields.io/npm/dm/hyper-vertical-tabs.svg?label=DL)](https://www.npmjs.com/package/hyper-vertical-tabs) 116 | [themer](https://www.npmjs.com/package/themer) - Generate themes for Hyper and all your other development tools | [![npm](https://img.shields.io/npm/dm/themer.svg?label=DL)](https://www.npmjs.com/package/themer) 117 | [hyper-native-window-decoration](https://www.npmjs.com/package/hyper-native-window-decoration) - Native window decorations in HyperTerm. | [![npm](https://img.shields.io/npm/dm/hyper-native-window-decoration.svg?label=DL)](https://www.npmjs.com/package/hyper-native-window-decoration) 118 | [hyper-hide-scroll](https://www.npmjs.com/package/hyper-hide-scroll) - Extension to hide the scrollbar from your terminal. | [![npm](https://img.shields.io/npm/dm/hyper-hide-scroll.svg?label=DL)](https://www.npmjs.com/package/hyper-hide-scroll) 119 | [hyper-systray](https://www.npmjs.com/package/hyper-systray) - Hyper in native Windows Systray. Hide from taskbar. Global shortcut for show/hide window. | [![npm](https://img.shields.io/npm/dm/hyper-systray.svg?label=DL)](https://www.npmjs.com/package/hyper-systray) 120 | [hyper-window-size](https://www.npmjs.com/package/hyper-window-size) - Set the default window size for Hyper! | [![npm](https://img.shields.io/npm/dm/hyper-window-size.svg?label=DL)](https://www.npmjs.com/package/hyper-window-size) 121 | [hyper-media-control](https://www.npmjs.com/package/hyper-media-control) - Display and control the current song in a variety of media players. | [![npm](https://img.shields.io/npm/dm/hyper-media-control.svg?label=DL)](https://npmjs.com/package/hyper-media-control) 122 | [hyper-folder-icon](https://www.npmjs.com/package/hyper-folder-icon) - Show custom folder's icon for Mac and Linux in tabs. | [![npm](https://img.shields.io/npm/dm/hyper-folder-icon.svg?label=DL)](https://www.npmjs.com/package/hyper-folder-icon) 123 | [hyper-tab-touchbar](https://www.npmjs.com/package/hyper-tab-touchbar) - See and access your terminal tabs from the MacBook Pro's Touch Bar. Supports icons with `hyper-folder-icon`. | [![npm](https://img.shields.io/npm/dm/hyper-tab-touchbar.svg?label=DL)](https://www.npmjs.com/package/hyper-tab-touchbar) 124 | [hyper-opacity](https://www.npmjs.com/package/hyper-opacity) - Set the opacity of your Hyper window. | [![npm](https://img.shields.io/npm/dm/hyper-opacity.svg?label=DL)](https://www.npmjs.com/package/hyper-opacity) 125 | [hyper-custom-touchbar](https://www.npmjs.com/package/hyper-custom-touchbar) - Add custom buttons in MacBook Pro's Touch Bar. | [![npm](https://img.shields.io/npm/dm/hyper-custom-touchbar.svg?label=DL)](https://www.npmjs.com/package/hyper-custom-touchbar) 126 | [hyper-save-windowstate](https://www.npmjs.com/package/hyper-save-windowstate) - Save and restore Hyper window position/size after restart. | [![npm](https://img.shields.io/npm/dm/hyper-save-windowstate.svg?label=DL)](https://www.npmjs.com/package/hyper-save-windowstate) 127 | 128 | [⬆ Back to top](#contents) 129 | 130 | ## Development 131 | 132 | Name and description | Downloads 133 | -------------------------------------------------------------------------------------------------------------------------------------------- | ------------- 134 | [hyperterm-open-devtools](https://www.npmjs.com/package/hyperterm-open-devtools) - Open DevTools for currently showing web page with a hotkey. | [![npm](https://img.shields.io/npm/dm/hyperterm-open-devtools.svg?label=DL)](https://www.npmjs.com/package/hyperterm-open-devtools) 135 | [hyperterm-install-devtools](https://www.npmjs.com/package/hyperterm-install-devtools) - Use Chrome DevTools extension on Hyper. | [![npm](https://img.shields.io/npm/dm/hyperterm-install-devtools.svg?label=DL)](https://www.npmjs.com/package/hyperterm-install-devtools) 136 | [is-hyper](https://www.npmjs.com/package/is-hyper) - Check if your Node.js script is running in Hyper. | [![npm](https://img.shields.io/npm/dm/is-hyper.svg?label=DL)](https://www.npmjs.com/package/is-hyper) 137 | 138 | [⬆ Back to top](#contents) 139 | 140 | ## Fun 141 | Name and description | Downloads 142 | ---------------------------------- | ------------- 143 | [hyperpower](https://www.npmjs.com/package/hyperpower) - Add a pinch of kick-arse raw POWER to your Hyper! Adds the pixel-explosion and shake effect that's been implemented in several text editors. | [![npm](https://img.shields.io/npm/dm/hyperpower.svg?label=DL)](https://www.npmjs.com/package/hyperpower) 144 | [htyt](https://www.npmjs.com/package/htyt) - Search and play youtube videos in Hyper. | [![npm](https://img.shields.io/npm/dm/htyt.svg?label=DL)](https://www.npmjs.com/package/htyt) 145 | [hyper-john](https://www.npmjs.com/package/hyper-john) - A 10% chance of getting hit with the John Cena theme when opening tabs, windows and splits. | [![npm](https://img.shields.io/npm/dm/hyper-john.svg?label=DL)](https://www.npmjs.com/package/hyper-john) 146 | [hyper-command-gifs](https://www.npmjs.com/package/hyper-command-gifs) - Gives you matching GIFs for your terminal commands. | [![npm](https://img.shields.io/npm/dm/hyper-command-gifs.svg?label=DL)](https://www.npmjs.com/package/hyper-command-gifs) 147 | [hyper-cat](https://www.npmjs.com/package/hyper-cat) - Turn your terminal into nyan cat while typing. | [![npm](https://img.shields.io/npm/dm/hyper-cat.svg?label=DL)](https://www.npmjs.com/package/hyper-cat) 148 | [hyper-cat-cursor](https://www.npmjs.com/package/hyper-cat-cursor) - Replaces the cursor with a cat emoji sequence. | [![npm](https://img.shields.io/npm/dm/hyper-cat-cursor.svg?label=DL)](https://www.npmjs.com/package/hyper-cat-cursor) 149 | [gitrocket](https://www.npmjs.com/package/gitrocket) - Launch a rocket ship in your terminal when you push code with Git! | [![npm](https://img.shields.io/npm/dm/gitrocket.svg?label=DL)](https://www.npmjs.com/package/gitrocket) 150 | [hypergravity](https://www.npmjs.com/package/hypergravity) - Add some fancy physics to your terminal! | [![npm](https://img.shields.io/npm/dm/hypergravity.svg?label=DL)](https://www.npmjs.com/package/hypergravity) 151 | [space-pull](https://www.npmjs.com/package/space-pull) - Add animation of landing rocket in your terminal when pulling code with git. | [![npm](https://img.shields.io/npm/dm/space-pull.svg?label=DL)](https://www.npmjs.com/package/space-pull) 152 | [hyper-bloodbath](https://www.npmjs.com/package/hyper-bloodbath) - A brutal re-imagining of hyperpower. Dripping blood from your cursor. | [![npm](https://img.shields.io/npm/dm/hyper-bloodbath.svg?label=DL)](https://www.npmjs.com/package/hyper-bloodbath) 153 | [hyper-postprocessing](https://www.npmjs.com/package/hyper-postprocessing) - Add fragment shaders to the Hyper terminal. | [![npm](https://img.shields.io/npm/dm/hyper-postprocessing.svg?label=DL)](https://www.npmjs.com/package/hyper-postprocessing) 154 | [git-falcon9](https://www.npmjs.com/package/git-falcon9) - Launch and land SpaceX's Falcon rockets when pushing and pulling code with git! | [![npm](https://img.shields.io/npm/dm/git-falcon9.svg?label=DL)](https://www.npmjs.com/package/git-falcon9) 155 | 156 | [⬆ Back to top](#contents) 157 | 158 | # Themes 159 | 160 | Name and description | Downloads 161 | -------------------- | ------------- 162 | [an-old-hype](https://www.npmjs.com/package/an-old-hype) - A Hyper theme inspired by a galaxy far far away... and by Jesse Leites [atom syntax theme](https://atom.io/themes/an-old-hope-syntax). | [![npm](https://img.shields.io/npm/dm/an-old-hype.svg?label=DL)](https://www.npmjs.com/package/an-old-hype) 163 | [hyper-adventure-time](https://www.npmjs.com/package/hyper-adventure-time) - A Hyper port of the Adventure Time theme from [iTerm2 Color Schemes](https://github.com/mbadolato/iTerm2-Color-Schemes). | [![npm](https://img.shields.io/npm/dm/hyper-adventure-time.svg?label=DL)](https://www.npmjs.com/package/hyper-adventure-time) 164 | [hyper-altair](https://www.npmjs.com/package/hyper-altair) - A theme that is a elegant, customizable and has vivid colors. | [![npm](https://img.shields.io/npm/dm/hyper-altair.svg?label=DL)](https://www.npmjs.com/package/hyper-altair) 165 | [hyper-atom-dark-transparent](https://www.npmjs.com/package/hyper-atom-dark-transparent) - Hyper theme based on the hyperterm-atom-dark, but with transparency. | [![npm](https://img.shields.io/npm/dm/hyper-atom-dark-transparent.svg?label=DL)](https://www.npmjs.com/package/hyper-atom-dark-transparent) 166 | [hyper-aurora](https://www.npmjs.com/package/hyper-aurora) - Theme based on Aurora Borealis. | [![npm](https://img.shields.io/npm/dm/hyper-aurora.svg?label=DL)](https://www.npmjs.com/package/hyper-aurora) 167 | [hyper-aww](https://www.npmjs.com/package/hyper-aww) - A theme that changes the terminal background to a different cute animal gif each time you open Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-aww.svg?label=DL)](https://www.npmjs.com/package/hyper-aww) 168 | [hyper-ayu](https://www.npmjs.com/package/hyper-ayu) - Theme based on the Ayu Theme for Sublime Text. | [![npm](https://img.shields.io/npm/dm/hyper-ayu.svg?label=DL)](https://www.npmjs.com/package/hyper-ayu) 169 | [hyper-ayu-light](https://www.npmjs.com/package/hyper-ayu-light) - Theme based on the Ayu Light Theme for Sublime Text. | [![npm](https://img.shields.io/npm/dm/hyper-ayu-light.svg?label=DL)](https://www.npmjs.com/package/hyper-ayu-light) 170 | [hyper-ayu-light-special](https://www.npmjs.com/package/hyper-ayu-light-special) - Theme based on the Ayu Light Theme but added black for readability. | [![npm](https://img.shields.io/npm/dm/hyper-ayu-light-special.svg?label=DL)](https://www.npmjs.com/package/hyper-ayu-light-special) 171 | [hyper-ayu-mirage](https://www.npmjs.com/package/hyper-ayu-mirage) - Theme based on the Ayu Mirage Theme for Sublime Text. | [![npm](https://img.shields.io/npm/dm/hyper-ayu-mirage.svg?label=DL)](https://www.npmjs.com/package/hyper-ayu-mirage) 172 | [hyper-bloody](https://www.npmjs.com/package/hyper-bloody) - An amazing dark theme with awesome vibrant colors. | [![npm](https://img.shields.io/npm/dm/hyper-bloody.svg?label=DL)](https://www.npmjs.com/package/hyper-bloody) 173 | [hyper-captain-sweetheart](https://www.npmjs.com/package/hyper-captain-sweetheart) - Tuff but sweet Hyper theme. | [![npm](https://img.shields.io/npm/dm/hyper-captain-sweetheart.svg?label=DL)](https://www.npmjs.com/package/hyper-captain-sweetheart) 174 | [hyper-chesterish](https://www.npmjs.com/package/hyper-chesterish) - Saturated theme based on Chester syntax. | [![npm](https://img.shields.io/npm/dm/hyper-chesterish.svg?label=DL)](https://www.npmjs.com/package/hyper-chesterish) 175 | [hyper-city-lights](https://www.npmjs.com/package/hyper-city-lights) - A dark theme based on the [City Lights](http://citylights.xyz) syntax. | [![npm](https://img.shields.io/npm/dm/hyper-city-lights.svg?label=DL)](https://www.npmjs.com/package/hyper-city-lights) 176 | [hyper-clean](https://www.npmjs.com/package/hyper-clean) - A clean theme with [IBM Design colors](https://github.com/IBM-Design/colors). | [![npm](https://img.shields.io/npm/dm/hyper-clean.svg?label=DL)](https://www.npmjs.com/package/hyper-clean) 177 | [hyper-cobalt-next](https://www.npmjs.com/package/hyper-cobalt-next) - Theme based on [Cobalt Next VS Code Theme](https://marketplace.visualstudio.com/items?itemName=dline.CobaltNext). | [![npm](https://img.shields.io/npm/dm/hyper-cobalt-next.svg?label=DL)](https://www.npmjs.com/package/hyper-cobalt-next) 178 | [hyper-criollo](https://www.npmjs.com/package/hyper-criollo) - Theme based in vaporwave colors. | [![npm](https://img.shields.io/npm/dm/hyper-criollo.svg?label=DL)](https://www.npmjs.com/package/hyper-criollo) 179 | [hyper-darkmatter](https://www.npmjs.com/package/hyper-darkmatter) - Dark - Darkmatter theme for Hyper, inspired by [Sublime Darkmatter](https://github.com/patrickemuller/Sublime-Darkmatter-Theme). | [![npm](https://img.shields.io/npm/dm/hyper-darkmatter.svg?label=DL)](https://www.npmjs.com/package/hyper-darkmatter) 180 | [hyper-dracula](https://www.npmjs.com/package/hyper-dracula) - A dark theme for Hyper based on the [Dracula theme](https://draculatheme.com/hyper/). | [![npm](https://img.shields.io/npm/dm/hyper-dracula.svg?label=DL)](https://www.npmjs.com/package/hyper-dracula) 181 | [hyper-firewatch](https://www.npmjs.com/package/hyper-firewatch) - A dark Hyper theme inspired by Campo Santo's Firewatch video game. | [![npm](https://img.shields.io/npm/dm/hyper-firewatch.svg?label=DL)](https://www.npmjs.com/package/hyper-firewatch) 182 | [hyper-flat-2](https://www.npmjs.com/package/hyper-flat-2) - Another Flat theme for Hyper based on Flat theme for Terminal. | [![npm](https://img.shields.io/npm/dm/hyper-flat-2.svg?label=DL)](https://www.npmjs.com/package/hyper-flat-2) 183 | [hyper-flat](https://www.npmjs.com/package/hyper-flat) - A Flat theme for Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-flat.svg?label=DL)](https://www.npmjs.com/package/hyper-flat) 184 | [hyper-frontend-delight](https://www.npmjs.com/package/hyper-frontend-delight) - Dark - Based on Frontend Delight iTerm2 color scheme. | [![npm](https://img.shields.io/npm/dm/hyper-frontend-delight.svg?label=DL)](https://www.npmjs.com/package/hyper-frontend-delight) 185 | [hyper-gruv](https://www.npmjs.com/package/hyper-gruv) - Dark - Gruvbox Theme based off of [gruvbox](https://github.com/morhetz/gruvbox). | [![npm](https://img.shields.io/npm/dm/hyper-gruv.svg?label=DL)](https://www.npmjs.com/package/hyper-gruv) 186 | [hyper-hybrid-reduced-contrast](https://www.npmjs.com/package/hyper-hybrid-reduced-contrast) - A port of the reduced contrast version of [vim-hybrid](https://github.com/w0ng/vim-hybrid). | [![npm](https://img.shields.io/npm/dm/hyper-hybrid-reduced-contrast.svg?label=DL)](https://www.npmjs.com/package/hyper-hybrid-reduced-contrast) 187 | [hyper-hypest](https://www.npmjs.com/package/hyper-hypest) - A beautiful and minimal macOS theme with vibrancy. | [![npm](https://img.shields.io/npm/dm/hyper-hypest.svg?label=DL)](https://www.npmjs.com/package/hyper-hypest) 188 | [hyper-loved](https://www.npmjs.com/package/hyper-loved) - A dark, elegant theme. | [![npm](https://img.shields.io/npm/dm/hyper-loved.svg?label=DL)](https://www.npmjs.com/package/hyper-loved) 189 | [hyper-macos](https://www.npmjs.com/package/hyper-macos) - Native macOS theme with vibrancy support. | [![npm](https://img.shields.io/npm/dm/hyper-macos.svg?label=DL)](https://www.npmjs.com/package/hyper-macos) 190 | [hyper-mahoushoujo](https://www.npmjs.com/package/hyper-mahoushoujo) - Light theme inspired by magical girls ✨ | [![npm](https://img.shields.io/npm/dm/hyper-mahoushoujo.svg?label=DL)](https://www.npmjs.com/package/hyper-mahoushoujo) 191 | [hyper-material-box](https://www.npmjs.com/package/hyper-material-box) - The most hackable theme for your favorite terminal Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-material-box.svg?label=DL)](https://www.npmjs.com/package/hyper-material-box) 192 | [hyper-material-theme](https://www.npmjs.com/package/hyper-material-theme) - Dark - The most epic material theme now on Hyper App. | [![npm](https://img.shields.io/npm/dm/hyper-material-theme.svg?label=DL)](https://www.npmjs.com/package/hyper-material-theme) 193 | [hyper-materialshell](https://www.npmjs.com/package/hyper-materialshell) - A dark material design theme with a good contrast and color pops at the important parts. Designed to be easy on the eyes, based on [materialshell](https://github.com/carloscuesta/materialshell). | [![npm](https://img.shields.io/npm/dm/hyper-materialshell.svg?label=DL)](https://www.npmjs.com/package/hyper-materialshell) 194 | [hyper-midnight](https://www.npmjs.com/package/hyper-midnight) - A minimalist theme for the Hyper terminal. | [![npm](https://img.shields.io/npm/dm/hyper-midnight.svg?label=DL)](https://www.npmjs.com/package/hyper-midnight) 195 | [hyper-monochrome](https://www.npmjs.com/package/hyper-monochrome) - Monochrome theme, based on [vim-monochrome](https://github.com/fxn/vim-monochrome). | [![npm](https://img.shields.io/npm/dm/hyper-monochrome.svg?label=DL)](https://www.npmjs.com/package/hyper-monochrome) 196 | [hyper-monokai-deluxe](https://www.npmjs.com/package/hyper-monokai-deluxe) - Monokai Deluxe theme with hyperborder in a better way and tab highlighting. | [![npm](https://img.shields.io/npm/dm/hyper-monokai-deluxe.svg?label=DL)](https://www.npmjs.com/package/hyper-monokai-deluxe) 197 | [hyper-moonlite](https://www.npmjs.com/package/hyper-moonlite) - Spin-off of the [New Moon Syntax Theme](https://github.com/taniarascia/new-moon) for Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-moonlite.svg?label=DL)](https://www.npmjs.com/package/hyper-moonlite) 198 | [hyper-nord](https://www.npmjs.com/package/hyper-nord) - Nord theme for Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-nord.svg?label=DL)](https://www.npmjs.com/package/hyper-nord) 199 | [hyper-oceans16](https://www.npmjs.com/package/hyper-oceans16) - Saturated theme based on Base16 Ocean syntax. | [![npm](https://img.shields.io/npm/dm/hyper-oceans16.svg?label=DL)](https://www.npmjs.com/package/hyper-oceans16) 200 | [hyper-oldschool](https://www.npmjs.com/package/hyper-oldschool) - Old school terminal theme for Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-oldschool.svg?label=DL)](https://www.npmjs.com/package/hyper-oldschool) 201 | [hyper-one-dark-vivid](https://www.npmjs.com/package/hyper-one-dark-vivid) - Dark theme based on Atom One Dark with more vivid text colors. | [![npm](https://img.shields.io/npm/dm/hyper-one-dark-vivid.svg?label=DL)](https://www.npmjs.com/package/hyper-one-dark-vivid) 202 | [hyper-one-light](https://www.npmjs.com/package/hyper-one-light) - Light - A very cute theme with extra light background based on the [Atom One Light](https://github.com/atom/one-light-syntax) pallete. | [![npm](https://img.shields.io/npm/dm/hyper-one-light.svg?label=DL)](https://www.npmjs.com/package/hyper-one-light) 203 | [hyper-papercolor](https://www.npmjs.com/package/hyper-papercolor) - [PaperColor](https://github.com/NLKNguyen/papercolor-theme) theme for Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-papercolor.svg?label=DL)](https://www.npmjs.com/package/hyper-papercolor) 204 | [hyper-peacock](https://www.npmjs.com/package/hyper-peacock) - A Peacock theme for Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-peacock.svg?label=DL)](https://www.npmjs.com/package/hyper-peacock) 205 | [hyper-pokemon](https://www.npmjs.com/package/hyper-pokemon) - Wondrous, tailor-made Pokémon themes for your Hyper terminal. | [![npm](https://img.shields.io/npm/dm/hyper-pokemon.svg?label=DL)](https://www.npmjs.com/package/hyper-pokemon) 206 | [hyper-polarbear](https://www.npmjs.com/package/hyper-polarbear) - A beautiful white theme for Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-polarbear.svg?label=DL)](https://www.npmjs.com/package/hyper-polarbear) 207 | [hyper-ramda](https://www.npmjs.com/package/hyper-ramda) - Theme inspired by the RamdaJS REPL. | [![npm](https://img.shields.io/npm/dm/hyper-ramda.svg?label=DL)](https://www.npmjs.com/package/hyper-ramda) 208 | [hyper-relaxed](https://www.npmjs.com/package/hyper-relaxed) - A theme to take a more relaxed view of things. | [![npm](https://img.shields.io/npm/dm/hyper-relaxed.svg?label=DL)](https://www.npmjs.com/package/hyper-relaxed) 209 | [hyper-seashells](https://www.npmjs.com/package/hyper-seashells) - A Hyper port of the [iTerm2 SeaShells](https://github.com/mbadolato/iTerm2-Color-Schemes/blob/master/screenshots/sea_shells.png) color scheme. | [![npm](https://img.shields.io/npm/dm/hyper-seashells.svg?label=DL)](https://www.npmjs.com/package/hyper-seashells) 210 | [hyper-sierra-vibrancy](https://www.npmjs.com/package/hyper-sierra-vibrancy) - hyper-sierra with vibrancy. | [![npm](https://img.shields.io/npm/dm/hyper-sierra-vibrancy.svg?label=DL)](https://www.npmjs.com/package/hyper-sierra-vibrancy) 211 | [hyper-sierra](https://www.npmjs.com/package/hyper-sierra) - A dark theme for Hyper inspired by the Sierra Nevada. | [![npm](https://img.shields.io/npm/dm/hyper-sierra.svg?label=DL)](https://www.npmjs.com/package/hyper-sierra) 212 | [hyper-snazzy](https://www.npmjs.com/package/hyper-snazzy) - Dark - Elegant theme with bright colors. | [![npm](https://img.shields.io/npm/dm/hyper-snazzy.svg?label=DL)](https://www.npmjs.com/package/hyper-snazzy) 213 | [hyper-solarized-dark](https://www.npmjs.com/package/hyper-solarized-dark) - Pleasant and carefully chosen colors based on the popular [solarized](https://ethanschoonover.com/solarized/) palette. | [![npm](https://img.shields.io/npm/dm/hyper-solarized-dark.svg?label=DL)](https://www.npmjs.com/package/hyper-solarized-dark) 214 | [hyper-solarized-light](https://www.npmjs.com/package/hyper-solarized-light) - Pleasant and carefully chosen colors based on the popular [solarized](https://ethanschoonover.com/solarized/) palette. | [![npm](https://img.shields.io/npm/dm/hyper-solarized-light.svg?label=DL)](https://www.npmjs.com/package/hyper-solarized-light) 215 | [hyper-solarized-one](https://www.npmjs.com/package/hyper-solarized-one) - A 2-for-1 [Solarized](https://ethanschoonover.com/solarized/) theme for the Hyper Terminal. It knows what 🕐 it is... | [![npm](https://img.shields.io/npm/dm/hyper-solarized-one.svg?label=DL)](https://www.npmjs.com/package/hyper-solarized-one) 216 | [hyper-star-wars](https://www.npmjs.com/package/hyper-star-wars) - Super awesome, your Hyper terminal shall look. | [![npm](https://img.shields.io/npm/dm/hyper-star-wars.svg?label=DL)](https://www.npmjs.com/package/hyper-star-wars) 217 | [hyper-teatime](https://www.npmjs.com/package/hyper-teatime) - Light theme with sweet, pastel colors. | [![npm](https://img.shields.io/npm/dm/hyper-teatime.svg?label=DL)](https://www.npmjs.com/package/hyper-teatime) 218 | [hyper-theme](https://www.npmjs.com/package/hyper-theme) - Hyper colors theme for Hyper terminal. | [![npm](https://img.shields.io/npm/dm/hyper-theme.svg?label=DL)](https://www.npmjs.com/package/hyper-theme) 219 | [hyper-thirtyone](https://www.npmjs.com/package/hyper-thirtyone) - A slightly modified classic linux terminal theme for Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-thirtyone.svg?label=DL)](https://www.npmjs.com/package/hyper-thirtyone) 220 | [hyper-white-theme](https://www.npmjs.com/package/hyper-white-theme) - White & Purple theme for Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-white-theme.svg?label=DL)](https://www.npmjs.com/package/hyper-white-theme) 221 | [hyper-zenburn](https://www.npmjs.com/package/hyper-zenburn) - A classic low-contrast theme originally made for vim adapted for Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-zenburn.svg?label=DL)](https://www.npmjs.com/package/hyper-zenburn) 222 | [hyper-zigorat](https://www.npmjs.com/package/hyper-zigorat) - A minimal syntax theme for Hyper. | [![npm](https://img.shields.io/npm/dm/hyper-zigorat.svg?label=DL)](https://www.npmjs.com/package/hyper-zigorat) 223 | [hyperambient](https://www.npmjs.com/package/hyperambient) - Dark/Light - A theme that reacts to ambient light changes. | [![npm](https://img.shields.io/npm/dm/hyperambient.svg?label=DL)](https://www.npmjs.com/package/hyperambient) 224 | [hyperatompunk](https://www.npmjs.com/package/hyperatompunk) - Hyper extension to make your terminal look like a CRT in Fallout. | [![npm](https://img.shields.io/npm/dm/hyperatompunk.svg?label=DL)](https://www.npmjs.com/package/hyperatompunk) 225 | [hyperblue-vibrancy](https://www.npmjs.com/package/hyperblue-vibrancy) - The same cool tones from hyperblue, now with vibrancy! | [![npm](https://img.shields.io/npm/dm/hyperblue-vibrancy.svg?label=DL)](https://www.npmjs.com/package/hyperblue-vibrancy) 226 | [hyperblue](https://www.npmjs.com/package/hyperblue) - Dark, cool hues. Turns Hyper blue. | [![npm](https://img.shields.io/npm/dm/hyperblue.svg?label=DL)](https://www.npmjs.com/package/hyperblue) 227 | [hyperganymede](https://www.npmjs.com/package/hyperganymede) - A color scheme inspired by the icy coldness of the moons of Jupiter. | [![npm](https://img.shields.io/npm/dm/hyperganymede.svg?label=DL)](https://www.npmjs.com/package/hyperganymede) 228 | [hyperhue](https://www.npmjs.com/package/hyperhue) - Dark/Rainbow - A theme that reacts to the colors of your Philips Hue lights. | [![npm](https://img.shields.io/npm/dm/hyperhue.svg?label=DL)](https://www.npmjs.com/package/hyperhue) 229 | [hypernasa](https://www.npmjs.com/package/hypernasa) - A theme which replaces the terminal background with NASA's Picture of the Day. | [![npm](https://img.shields.io/npm/dm/hypernasa.svg?label=DL)](https://www.npmjs.com/package/hypernasa) 230 | [hyperocean](https://www.npmjs.com/package/hyperocean) - Deep oceanic blue Hyper theme. | [![npm](https://img.shields.io/npm/dm/hyperocean.svg?label=DL)](https://www.npmjs.com/package/hyperocean) 231 | [hyperpanic](https://www.npmjs.com/package/hyperpanic) - Dark - A very pretty theme close to the Panic theme's colors. Dark blue background with very bright highlight colors. | [![npm](https://img.shields.io/npm/dm/hyperpanic.svg?label=DL)](https://www.npmjs.com/package/hyperpanic) 232 | [hyperpunk](https://www.npmjs.com/package/hyperpunk) - Hyper extension to make your terminal look Cyberpunk / Sci-fi. | [![npm](https://img.shields.io/npm/dm/hyperpunk.svg?label=DL)](https://www.npmjs.com/package/hyperpunk) 233 | [hypersolar-dark](https://www.npmjs.com/package/hypersolar-dark) - A dark theme based loosely on Solarized Dark, with a fix for the usual solarized dark colours with blacks that actually show up in your terminal! | [![npm](https://img.shields.io/npm/dm/hypersolar-dark.svg?label=DL)](https://www.npmjs.com/package/hypersolar-dark) 234 | [hyperterm-adventurous](https://www.npmjs.com/package/hyperterm-adventurous) - An adventure time inspired theme based on the Adventurous Atom theme. | [![npm](https://img.shields.io/npm/dm/hyperterm-adventurous.svg?label=DL)](https://www.npmjs.com/package/hyperterm-adventurous) 235 | [hyperterm-atom-dark](https://www.npmjs.com/package/hyperterm-atom-dark) - Dark - Really beautiful import of Atom One Dark theme from the [official Atom theme](https://github.com/atom/one-dark-syntax). | [![npm](https://img.shields.io/npm/dm/hyperterm-atom-dark.svg?label=DL)](https://www.npmjs.com/package/hyperterm-atom-dark) 236 | [hyperterm-base-16-ocean](https://www.npmjs.com/package/hyperterm-base-16-ocean) - Simple Base 16 Ocean theme for hyperterm | [![npm](https://img.shields.io/npm/dm/hyperterm-base-16-ocean.svg?label=DL)](https://www.npmjs.com/package/hyperterm-base-16-ocean) 237 | [hyperterm-base16-tomorrow-dark](https://www.npmjs.com/package/hyperterm-base16-tomorrow-dark) - Dark - Hyper port of Atom's `Base16 Tomorrow Dark` Theme, with a pretty muted pastel pallette. | [![npm](https://img.shields.io/npm/dm/hyperterm-base16-tomorrow-dark.svg?label=DL)](https://www.npmjs.com/package/hyperterm-base16-tomorrow-dark) 238 | [hyperterm-bold-tab](https://www.npmjs.com/package/hyperterm-bold-tab) - Bold's your active tab text. Makes keeping track of your current tab painless. | [![npm](https://img.shields.io/npm/dm/hyperterm-bold-tab.svg?label=DL)](https://www.npmjs.com/package/hyperterm-bold-tab) 239 | [hyperterm-cobalt2-theme](https://www.npmjs.com/package/hyperterm-cobalt2-theme) - Dusty Blue, dark with vibrant pops of colour for the important stuff. Goes well with Cobalt2 ZSH theme. | [![npm](https://img.shields.io/npm/dm/hyperterm-cobalt2-theme.svg?label=DL)](https://www.npmjs.com/package/hyperterm-cobalt2-theme) 240 | [hyperterm-colors](https://www.npmjs.com/package/hyperterm-colors) - Dark - Sweet dark color scheme with a chocolate-y brown background and a pretty set of muted colors! | [![npm](https://img.shields.io/npm/dm/hyperterm-colors.svg?label=DL)](https://www.npmjs.com/package/hyperterm-colors) 241 | [hyperterm-dark-drifter](https://www.npmjs.com/package/hyperterm-dark-drifter) - A (dark) Hyper theme inspired by Heart Machine's Hyper Light Drifter. | [![npm](https://img.shields.io/npm/dm/hyperterm-dark-drifter.svg?label=DL)](https://www.npmjs.com/package/hyperterm-dark-drifter) 242 | [hyperterm-dark-fusion](https://www.npmjs.com/package/hyperterm-dark-fusion) - Hyperterm theme based on atom-dark-fusion. | [![npm](https://img.shields.io/npm/dm/hyperterm-dark-fusion.svg?label=DL)](https://www.npmjs.com/package/hyperterm-dark-fusion) 243 | [hyperterm-dark-macos](https://www.npmjs.com/package/hyperterm-dark-macos) - A theme that pairs nicely with macOS dark mode. | [![npm](https://img.shields.io/npm/dm/hyperterm-dark-macos.svg?label=DL)](https://www.npmjs.com/package/hyperterm-dark-macos) 244 | [hyperterm-deep-space](https://www.npmjs.com/package/hyperterm-deep-space) - Dark - Dark, muted theme with good color matching. | [![npm](https://img.shields.io/npm/dm/hyperterm-deep-space.svg?label=DL)](https://www.npmjs.com/package/hyperterm-deep-space) 245 | [hyperterm-duotone-darkspace](https://www.npmjs.com/package/hyperterm-duotone-darkspace) - Dark/Orange - A beautiful dark theme inspired by [Duotone Themes](http://simurai.com/projects/2016/01/01/duotone-themes) by [Simurai](http://simurai.com/). More color variations can be found [here](https://www.npmjs.com/search?q=hyperterm-duotone-*). | [![npm](https://img.shields.io/npm/dm/hyperterm-duotone-darkspace.svg?label=DL)](https://www.npmjs.com/package/hyperterm-duotone-darkspace) 246 | [hyperterm-earthsong](https://www.npmjs.com/package/hyperterm-earthsong) - A natural and calming theme for Hyper. Ported from iTerm's Earthsong theme. | [![npm](https://img.shields.io/npm/dm/hyperterm-earthsong.svg?label=DL)](https://www.npmjs.com/package/hyperterm-earthsong) 247 | [hyper-electron-highlighter](https://www.npmjs.com/package/hyper-electron-highlighter) - Dark - Port of Atom One Dark syntax colors with more vibrant colors. (previously [hyperterm-electron-highlighter](https://www.npmjs.com/package/hyperterm-electron-highlighter)) | [![npm](https://img.shields.io/npm/dm/hyper-electron-highlighter.svg?label=DL)](https://www.npmjs.com/package/hyper-electron-highlighter) 248 | [hyperterm-firewatch](https://www.npmjs.com/package/hyperterm-firewatch) - Dark – Glowing, dark theme heavily inspired by the [Firewatch game](http://www.firewatchgame.com/) and the [atom syntax theme](https://atom.io/themes/firewatch-syntax) based on it. | [![npm](https://img.shields.io/npm/dm/hyperterm-firewatch.svg?label=DL)](https://www.npmjs.com/package/hyperterm-firewatch) 249 | [hyperterm-gooey](https://www.npmjs.com/package/hyperterm-gooey) - A dark theme with striking green and purple, based off atom-dark. | [![npm](https://img.shields.io/npm/dm/hyperterm-gooey.svg?label=DL)](https://www.npmjs.com/package/hyperterm-gooey) 250 | [hyperterm-gruvbox-dark](https://www.npmjs.com/package/hyperterm-gruvbox-dark) - Dark - Hyper theme with retro, earthy groove colors based on the [gruvbox](https://github.com/morhetz/gruvbox) vim color scheme. | [![npm](https://img.shields.io/npm/dm/hyperterm-gruvbox-dark.svg?label=DL)](https://www.npmjs.com/package/hyperterm-gruvbox-dark) 251 | [hyperterm-gruvbox](https://www.npmjs.com/package/hyperterm-gruvbox) - Theme based on gruvbox with dark, light styles and contrast options. | [![npm](https://img.shields.io/npm/dm/hyperterm-gruvbox.svg?label=DL)](https://www.npmjs.com/package/hyperterm-gruvbox) 252 | [hyperterm-hipster](https://www.npmjs.com/package/hyperterm-hipster) - A hipster theme based on the hipster-syntax theme for Atom. | [![npm](https://img.shields.io/npm/dm/hyperterm-hipster.svg?label=DL)](https://www.npmjs.com/package/hyperterm-hipster) 253 | [hyperterm-horizon](https://www.npmjs.com/package/hyperterm-horizon) - Unofficial port of the VSCode theme [Horizon](https://github.com/jolaleye/horizon-theme-vscode) to Hyper. | [![npm](https://img.shields.io/npm/dm/hyperterm-horizon.svg?label=DL)](https://www.npmjs.com/package/hyperterm-horizon) 254 | [hyperterm-hybrid](https://www.npmjs.com/package/hyperterm-hybrid) - Dark - Beautiful theme, based on [vim-hybrid](https://github.com/w0ng/vim-hybrid), that combines [Tomorrow-Night](https://github.com/chriskempson/vim-tomorrow-theme), [Codecademy](https://www.codecademy.com/), [Jellybeans](https://github.com/nanotech/jellybeans.vim), and [Solarized](https://github.com/altercation/vim-colors-solarized) themes together. | [![npm](https://img.shields.io/npm/dm/hyperterm-hybrid.svg?label=DL)](https://www.npmjs.com/package/hyperterm-hybrid) 255 | [hyperterm-light-drifter](https://www.npmjs.com/package/hyperterm-light-drifter) - A (light) Hyper theme inspired by Heart Machine's Hyper Light Drifter. | [![npm](https://img.shields.io/npm/dm/hyperterm-light-drifter.svg?label=DL)](https://www.npmjs.com/package/hyperterm-light-drifter) 256 | [hyperterm-material-spacegray](https://www.npmjs.com/package/hyperterm-material-spacegray) - A port of the low-contrast Material Spacegray theme. | [![npm](https://img.shields.io/npm/dm/hyperterm-material-spacegray.svg?label=DL)](https://www.npmjs.com/package/hyperterm-material-spacegray) 257 | [hyperterm-material](https://www.npmjs.com/package/hyperterm-material) - Dark - Brings the famous Material Design colors scheme in Hyper. | [![npm](https://img.shields.io/npm/dm/hyperterm-material.svg?label=DL)](https://www.npmjs.com/package/hyperterm-material) 258 | [hyperterm-mild-dark](https://www.npmjs.com/package/hyperterm-mild-dark) - A mild dark theme for Hyper. | [![npm](https://img.shields.io/npm/dm/hyperterm-mild-dark.svg?label=DL)](https://www.npmjs.com/package/hyperterm-mild-dark) 259 | [hyperterm-monokai](https://www.npmjs.com/package/hyperterm-monokai) - Dark - A port of the popular monokai theme. The colors are warm, relaxing and pleasing to the eyes. | [![npm](https://img.shields.io/npm/dm/hyperterm-monokai.svg?label=DL)](https://www.npmjs.com/package/hyperterm-monokai) 260 | [hyperterm-new-moon-theme](https://www.npmjs.com/package/hyperterm-new-moon-theme) - 🌙 The optimized dark theme for web development. Theme based on the [New Moon Syntax Theme](https://github.com/taniarascia/new-moon). | [![npm](https://img.shields.io/npm/dm/hyperterm-new-moon-theme.svg?label=DL)](https://www.npmjs.com/package/hyperterm-new-moon-theme) 261 | [hyperterm-oceanic-next](https://www.npmjs.com/package/hyperterm-oceanic-next) - Dark blue theme optimised for ES2015. Ported from [Oceanic Next](https://github.com/voronianski/oceanic-next-color-scheme). | [![npm](https://img.shields.io/npm/dm/hyperterm-oceanic-next.svg?label=DL)](https://www.npmjs.com/package/hyperterm-oceanic-next) 262 | [hyperterm-panda](https://www.npmjs.com/package/hyperterm-panda) — Panda syntax theme a superminimal, dark Syntax Theme — Hyper port. | [![npm](https://img.shields.io/npm/dm/hyperterm-panda.svg?label=DL)](https://www.npmjs.com/package/hyperterm-panda) 263 | [hyperterm-retro](https://www.npmjs.com/package/hyperterm-retro) - A retro Hyper theme inspired by the [cool-retro-term](https://github.com/Swordfish90/cool-retro-term) terminal emulator. | [![npm](https://img.shields.io/npm/dm/hyperterm-retro.svg?label=DL)](https://www.npmjs.com/package/hyperterm-retro) 264 | [hyperterm-sourcerer](https://www.npmjs.com/package/hyperterm-sourcerer) - A 16-bit dark theme based on [xero/sourcerer](https://github.com/xero/sourcerer). | [![npm](https://img.shields.io/npm/dm/hyperterm-sourcerer.svg?label=DL)](https://www.npmjs.com/package/hyperterm-sourcerer) 265 | [hyperterm-spacegray](https://www.npmjs.com/package/hyperterm-spacegray) - Port of the popular Spacegray theme, optimized for terminal usage. | [![npm](https://img.shields.io/npm/dm/hyperterm-spacegray.svg?label=DL)](https://www.npmjs.com/package/hyperterm-spacegray) 266 | [hyperterm-tomorrow-night](https://www.npmjs.com/package/hyperterm-tomorrow-night) - Dark - Port of the popular Tomorrow Night theme. | [![npm](https://img.shields.io/npm/dm/hyperterm-tomorrow-night.svg?label=DL)](https://www.npmjs.com/package/hyperterm-tomorrow-night) 267 | [hyperterm-ubuntu-theme](https://www.npmjs.com/package/hyperterm-ubuntu-theme) - Ubuntu-style theme. | [![npm](https://img.shields.io/npm/dm/hyperterm-ubuntu-them.svg?label=DL)](https://www.npmjs.com/package/hyperterm-ubuntu-theme) 268 | [hyperterm-ultrasweet](https://www.npmjs.com/package/hyperterm-ultrasweet) - A dark theme with nebula hues for Hyper. | [![npm](https://img.shields.io/npm/dm/hyperterm-ultrasweet.svg?label=DL)](https://www.npmjs.com/package/hyperterm-ultrasweet) 269 | [hyperterm-unlease](https://www.npmjs.com/package/hyperterm-unlease) - A fresh theme for Hyper that makes you feel like there's one of those pine tree car air fresheners hanging from your terminal. | [![npm](https://img.shields.io/npm/dm/hyperterm-unlease.svg?label=DL)](https://www.npmjs.com/package/hyperterm-unlease) 270 | [hyperterm-wp-theme](https://www.npmjs.com/package/hyperterm-wp-theme) - An adaptation of the popular JetBrains Darcula Theme with support for colored tabs. | [![npm](https://img.shields.io/npm/dm/hyperterm-wp-theme.svg?label=DL)](https://www.npmjs.com/package/hyperterm-wp-theme) 271 | [shades-of-purple-hyper](https://www.npmjs.com/package/shades-of-purple-hyper) - Professional Hyper™ theme with hand-picked & bold shades of purple. Purple can be genius. | [![npm](https://img.shields.io/npm/dm/shades-of-purple-hyper.svg?label=DL)](https://www.npmjs.com/package/shades-of-purple-hyper) 272 | [verminal](https://www.npmjs.com/package/verminal) - A dark Hyper theme with beautiful vibrancy. | [![npm](https://img.shields.io/npm/dm/verminal.svg?label=DL)](https://www.npmjs.com/package/verminal) 273 | 274 | Know of another really awesome theme? [Get it on awesome-hyper!](https://github.com/bnb/awesome-hyper/issues/new) 275 | 276 | [⬆ Back to top](#contents) 277 | 278 | # Resources 279 | * [Official Hyper Website](https://hyper.is/) - The official Hyper website. 280 | * [hyperzsh](https://www.npmjs.com/package/hyperzsh) - Zsh for Hyper. 281 | * [Extending Hyper](https://www.youtube.com/watch?v=q_O-VEermsk&list=PL31ehRjJCA6Ez9Y_dZWymd_LDV7Ydc_0D&index=2) - A talk by Matthew Conlen ([@mathisonian](https://github.com/mathisonian)) at EmpireNode 2016. 282 | * [Hyper Themes screenshot browser](https://hyperthemes.matthi.coffee) by [@MatthiasWinkelmann](https://github.com/MatthiasWinkelmann) to visually browse screenshots of Hyper themes. 283 | * [Carbon](https://carbon.now.sh/) is a tool to easily create Hyper-based screenshots. 284 | * Know of another Hyper resource? [Share the love!](https://github.com/bnb/awesome-hyper/issues/new) 285 | 286 | [⬆ Back to top](#contents) 287 | --------------------------------------------------------------------------------