mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
39 lines
736 B
JavaScript
39 lines
736 B
JavaScript
|
|
module.exports = {
|
||
|
|
config: {
|
||
|
|
// default font size for all tabs
|
||
|
|
fontSize: '12px',
|
||
|
|
|
||
|
|
// font family with optional fallbacks
|
||
|
|
fontFamily: 'Menlo, "DejaVu Sans Mono", "Lucida Console", monospace',
|
||
|
|
|
||
|
|
// terminal cursor background color
|
||
|
|
cursorColor: '#F81CE5',
|
||
|
|
|
||
|
|
// terminal background color
|
||
|
|
backgroundColor: '#000',
|
||
|
|
|
||
|
|
// some color overrides. see http://bit.ly/29k1iU2 for
|
||
|
|
// the full list
|
||
|
|
colors: [
|
||
|
|
'#000000',
|
||
|
|
'#ff0000',
|
||
|
|
'#33ff00',
|
||
|
|
'#ffff00',
|
||
|
|
'#0066ff',
|
||
|
|
'#cc00ff',
|
||
|
|
'#00ffff',
|
||
|
|
'#d0d0d0',
|
||
|
|
'#808080',
|
||
|
|
'#ff0000',
|
||
|
|
'#33ff00',
|
||
|
|
'#ffff00',
|
||
|
|
'#0066ff',
|
||
|
|
'#cc00ff',
|
||
|
|
'#00ffff',
|
||
|
|
'#ffffff'
|
||
|
|
]
|
||
|
|
},
|
||
|
|
|
||
|
|
plugins: []
|
||
|
|
};
|