1.1.0 • Published 8 years ago

hyperterm-base16-tomorrow-dark v1.1.0

Weekly downloads
7
License
MIT
Repository
github
Last release
8 years ago

Hyperterm Base16 Tomorrow Dark Theme Build Status codecov

Hyperterm Theme based on Atom's base16-tomorrow-dark-theme theme

Terminal

hyperterm-base16-tomorrow-dark Console

Install

  1. Open HyperTerm's preferences with Cmd+, (or manually at ~/.hyperterm.js) with your editor.
  • At time of writing there is a perms issue with Cmd+ open it manually.
  1. Update your list of plugins to include hyperterm-base16-tomorrow-dark, i.e. :

    plugins: [
    'hyperterm-base16-tomorrow-dark'
    ],
3. Fully reload HyperTerm (`Cmd+Shift+R`), and it's hyperterm secsi time :)

### Customization
You can tweak the colors used in the theme if you like., add a `themeOptions` object to `config` in the `.hyperterm.js` config.
Current Overridable Variables:
 - foregroundColor
 - backgroundColor
 - borderColor
 - cursorColor
 - inactiveTabColor
 - activeTabColor
 - accentColor

 #### Example
 ```js
 // ~/.hyperterm.js
 module.exports = {
   config: {
     fontSize: 14,
     colors: [], //
     // ......

     // Override Theme Settings
     themeOptions: {
       foregroundColor: '#ffffff',
       inactiveTabColor: 'pink',
       activeTabColor: '#232323',

     }
   },

   // add the theme
   plugins: [
     'hyperterm-base16-tomorrow-dark'
   ]
 }

License

MIT