Permalink
Switch branches/tags
Nothing to show
Find file
29c4ac9 Jul 16, 2016
16 lines (15 sloc) 312 Bytes
exports.decorateConfig = (config) => {
return Object.assign({}, config, {
borderColor: 'yellow',
cursorColor: 'yellow',
css: `
${config.css || ''}
.tabs_nav .tabs_list .tab_text {
color: yellow;
}
.tabs_nav .tabs_title {
color: yellow;
}
`
});
}