storybook-addon-material-ui5-react18
Version:
Storybook Addon for Material UI 5 Library with React 18 Support
21 lines (20 loc) • 439 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = getCurrentTheme;
var uiThemeLight = {
palette: {
borderColor: '#e0e0e0',
textColor: 'rgba(0, 0, 0, 0.87)',
secondaryTextColor: 'rgba(0, 0, 0, 0.54)',
inputTextColor: 'rgb(46, 84, 128)',
canvas: '#ffffff'
}
};
var currentTheme = {
theme: uiThemeLight
};
function getCurrentTheme() {
return currentTheme.theme;
}