Skip to content

joshwiens/hyperterm-base16-tomorrow-dark

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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'
],
  1. 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

// ~/.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