2021-04-29 09:24:39 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import { createMuiTheme } from '@material-ui/core/styles';
|
|
|
|
|
2021-05-11 08:01:45 +00:00
|
|
|
import { createColorTokens } from './utils';
|
2021-04-29 09:24:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a MUI theme based on local UI tokens.
|
|
|
|
*
|
|
|
|
* @param {Object} arg - The ui tokens.
|
|
|
|
* @returns {Object}
|
|
|
|
*/
|
|
|
|
export function createWebTheme({ font, colors, colorMap, shape, spacing, typography }: Object) {
|
|
|
|
return createMuiTheme({
|
|
|
|
props: {
|
|
|
|
// disable ripple effect on buttons globally
|
|
|
|
MuiButtonBase: {
|
|
|
|
disableRipple: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// use token spacing array
|
|
|
|
spacing
|
|
|
|
}, {
|
|
|
|
palette: createColorTokens(colorMap, colors),
|
|
|
|
shape,
|
|
|
|
typography: {
|
|
|
|
font,
|
|
|
|
...typography
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2021-10-08 08:05:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Formats the common styles object to be interpreted as proper CSS.
|
|
|
|
*
|
|
|
|
* @param {Object} stylesObj - The styles object.
|
|
|
|
* @returns {Object}
|
|
|
|
*/
|
|
|
|
export function formatCommonClasses(stylesObj: Object) {
|
|
|
|
const formatted = {};
|
|
|
|
|
|
|
|
for (const [ key, value ] of Object.entries(stylesObj)) {
|
|
|
|
formatted[`.${key}`] = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return formatted;
|
|
|
|
}
|