light static method
UiThemeTokens
light({
- UiColorTokens? colors,
- UiSpacingTokens? spacing,
- UiRadiusTokens? radius,
- UiShadowTokens? shadows,
- UiTypographyTokens? typography,
- UiMotionTokens? motion,
- UiEffectsTokens? effects,
Light theme with neutral Open UI Kit tokens.
Implementation
static UiThemeTokens light({
UiColorTokens? colors,
UiSpacingTokens? spacing,
UiRadiusTokens? radius,
UiShadowTokens? shadows,
UiTypographyTokens? typography,
UiMotionTokens? motion,
UiEffectsTokens? effects,
}) {
return UiThemeTokens(
colors: colors ?? UiColorTokens.light,
spacing: spacing ?? UiSpacingTokens.standard,
radius: radius ?? UiRadiusTokens.standard,
shadows: shadows ?? UiShadowTokens.standard,
typography: typography ?? UiTypographyTokens.standard,
motion: motion ?? UiMotionTokens.defaults,
effects: effects ?? UiEffectsTokens.adaptive,
brightness: Brightness.light,
);
}