Update .hyper.js
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
2135105a1d
commit
399f8e0c59
1 changed files with 34 additions and 24 deletions
58
.hyper.js
58
.hyper.js
|
@ -4,40 +4,50 @@ module.exports = {
|
||||||
|
|
||||||
fontFamily: 'Hack, "DejaVu Sans Mono", "Lucida Console", monospace',
|
fontFamily: 'Hack, "DejaVu Sans Mono", "Lucida Console", monospace',
|
||||||
|
|
||||||
cursorColor: 'rgba(248,28,229,0.75)',
|
cursorColor: 'rgba(55, 59, 65, 0.75)',
|
||||||
|
|
||||||
cursorShape: 'BLOCK',
|
cursorShape: 'BLOCK',
|
||||||
|
|
||||||
foregroundColor: '#fff',
|
foregroundColor: '#C5C8C6',
|
||||||
|
|
||||||
backgroundColor: '#000',
|
backgroundColor: '#1D1F21',
|
||||||
|
|
||||||
borderColor: '#333',
|
borderColor: '#373B41',
|
||||||
|
|
||||||
css: '',
|
// Hide the tab bar
|
||||||
|
css: `
|
||||||
|
.header_header {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.terms_terms {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
`,
|
||||||
|
|
||||||
termCSS: '',
|
termCSS: '',
|
||||||
|
|
||||||
padding: '12px 14px',
|
padding: '12px 14px',
|
||||||
|
|
||||||
colors: {
|
colors: [
|
||||||
black: '#000000',
|
"#1d1f21",
|
||||||
red: '#ff0000',
|
"#cc6666",
|
||||||
green: '#33ff00',
|
"#b5bd68",
|
||||||
yellow: '#ffffF0',
|
"#f0c674",
|
||||||
blue: '#0066ff',
|
"#81a2be",
|
||||||
magenta: '#cc00ff',
|
"#b57880",
|
||||||
cyan: '#00ffff',
|
"#8abeb7",
|
||||||
white: '#d0d0d0',
|
"#282a2e",
|
||||||
lightBlack: '#808080',
|
"#969896",
|
||||||
lightRed: '#ff0000',
|
"#cc6666",
|
||||||
lightGreen: '#33ff00',
|
"#b5bd68",
|
||||||
lightYellow: '#ffff00',
|
"#f0c674",
|
||||||
lightBlue: '#0066ff',
|
"#81a2be",
|
||||||
lightMagenta: '#cc00ff',
|
"#b57880",
|
||||||
lightCyan: '#00ffff',
|
"#8abeb7",
|
||||||
lightWhite: '#ffffff'
|
"#ffffff",
|
||||||
},
|
"#c5c8c6"
|
||||||
|
],
|
||||||
|
|
||||||
shell: '',
|
shell: '',
|
||||||
|
|
||||||
|
@ -56,7 +66,7 @@ module.exports = {
|
||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
"hyperterm-tomorrow-night"
|
//"hyperterm-tomorrow-night"
|
||||||
],
|
],
|
||||||
|
|
||||||
// in development, you can create a directory under
|
// in development, you can create a directory under
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue