Created
July 16, 2016 12:15
-
-
Save nagelflorian/20dd7e3424b0775147b5f850b2b349dd to your computer and use it in GitHub Desktop.
HyperTerm Config – JS/HTML/CSS Terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: [] | |
}; |
Author
nagelflorian
commented
Jul 16, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment