Skip to content

Instantly share code, notes, and snippets.

@erictherobot
Created December 13, 2016 02:51
Show Gist options
  • Save erictherobot/1030487f06b625432200bdb885897632 to your computer and use it in GitHub Desktop.
Save erictherobot/1030487f06b625432200bdb885897632 to your computer and use it in GitHub Desktop.
hyper.js magenta theme
exports.decorateConfig = (config) => {
return Object.assign({}, config, {
borderColor: 'magenta',
cursorColor: 'magenta',
css: `
${config.css || ''}
.tabs_nav .tabs_list .tab_text {
color: magenta;
}
.tabs_nav .tabs_title {
color: magenta;
}
`
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment