Created
December 13, 2016 02:51
-
-
Save erictherobot/1030487f06b625432200bdb885897632 to your computer and use it in GitHub Desktop.
hyper.js magenta theme
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
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