Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const TEXT_GREEN = '51, 255, 0';
exports.decorateConfig = (config) => {
return Object.assign({}, config, {
foregroundColor: BRIGHT_GREEN,
backgroundColor: DARK_GREEN,
backgroundColor: transparent,
borderColor: BRIGHT_GREEN,
cursorColor: '#40FFFF',
});
Expand Down Expand Up @@ -41,10 +41,19 @@ exports.decorateHyper = (HyperTerm, { React, notify }) => {
const textShadow = generateTextShadow();

const overridenProps = {
backgroundColor: 'black',
backgroundColor: 'transparent',
customCSS: `
${this.props.customCSS || ''}
body {
.hyper_main {
${noiseCss}
}
.term_fit {
${noiseCss}
}
.term_wrapper {
${noiseCss}
}
.xterm_screen {
${noiseCss}
}
.tabs_nav {
Expand Down