@instructure/quiz-taking
Version:
14 lines (12 loc) • 444 B
JavaScript
const generateComponentTheme = ({spacing, typography, 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