@instructure/quiz-taking
Version:
14 lines (13 loc) • 543 B
JavaScript
var generateComponentTheme = function(param) {
var spacing = param.spacing, typography = param.typography, colors = param.colors;
return {
boldFontWeight: typography.fontWeightBold,
normalFontWeight: typography.fontWeightNormal,
emptyTextMargin: spacing.small,
pageBackgroundColor: colors.contrasts.white1010,
sectionWrapperMargin: spacing.xSmall,
sectionWrapperPadding: spacing.xSmall,
sectionWrapperPaddingRight: spacing.medium
};
};
export default generateComponentTheme;