WSO2 API Manager 3.2.0+ sample publisher theme
This file contains 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
/** | |
* IMPORTANT: This file only contains theme JSS of the Publisher app, Don't add other configuration parameters here. | |
* This theme file is an extension of material-ui default theme https://material-ui.com/customization/default-theme/ | |
* Application related configurations are located in `<PUBLISHER_ROOT>site/public/theme/settings.js` | |
*/ | |
const userThemes = { | |
light(theme) { | |
return ( | |
{ | |
overrides: { | |
MuiRadio: { | |
colorSecondary: { | |
'&$checked': { color: theme.palette.primary.main }, | |
'&$disabled': { | |
color: theme.palette.action.disabled, | |
}, | |
}, | |
}, | |
}, | |
palette: { | |
background: { | |
appBar: '#f51975', | |
} | |
} | |
} | |
); | |
}, | |
}; | |
if (typeof module !== 'undefined') { | |
module.exports = userThemes; // Added for tests | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment