Skip to content

Instantly share code, notes, and snippets.

@nagelflorian
Created July 16, 2016 12:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nagelflorian/20dd7e3424b0775147b5f850b2b349dd to your computer and use it in GitHub Desktop.
Save nagelflorian/20dd7e3424b0775147b5f850b2b349dd to your computer and use it in GitHub Desktop.
HyperTerm Config – JS/HTML/CSS Terminal
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 16,
// font family with optional fallbacks
fontFamily: '"Inconsolata for Powerline", Menlo, "DejaVu Sans Mono", "Lucida Console", monospace',
// terminal cursor background color (hex)
cursorColor: '#fff',
// color of the text
foregroundColor: '#fff',
// terminal background color
backgroundColor: '#000',
// border color (window, tabs)
borderColor: '#000',
// custom css to embed in the main window
css: '',
// custom padding (css format, i.e.: `top right bottom left`)
termCSS: '',
// custom padding
padding: '12px 14px',
// some color overrides. see http://bit.ly/29k1iU2 for
// the full list
colors: [
'#000000',
'#be616a',
'#a3bd8c',
'#ebca8b',
'#8fa2b3',
'#b48ead',
'#96b4b4',
'#d0d0d0',
'#686868',
'#e36170',
'#a5c687',
'#f1d000',
'#6871ff',
'#c692bd',
'#a5cecd',
'#ffffff'
]
},
// a list of plugins to fetch and install from npm
// format: [@org/]project[#version]
// examples:
// `hypersolar`
// `@company/project`
// `project#1.0.1`
plugins: [],
// in development, you can create a directory under
// `~/.hyperterm_plugins/local/` and include it here
// to load it and avoid it being `npm install`ed
localPlugins: []
};
@nagelflorian
Copy link
Author

Hyperterm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment