TsdtechThemeData.light constructor

TsdtechThemeData.light()

Default light theme using the TSDTech brand palette.

Implementation

factory TsdtechThemeData.light() {
  return const TsdtechThemeData(
    primaryColor: TsdtechColors.primary,
    primaryLightColor: TsdtechColors.primaryLight,
    primaryDarkColor: TsdtechColors.primaryDark,
    accentColor: TsdtechColors.accent,
    backgroundColor: TsdtechColors.white,
    surfaceColor: TsdtechColors.surface,
    surfaceVariantColor: TsdtechColors.surfaceVariant,
    outlineColor: TsdtechColors.outline,
    textPrimaryColor: TsdtechColors.textPrimary,
    textSecondaryColor: TsdtechColors.textSecondary,
    textDisabledColor: TsdtechColors.textDisabled,
    textOnPrimaryColor: TsdtechColors.textOnPrimary,
    successColor: TsdtechColors.success,
    warningColor: TsdtechColors.warning,
    errorColor: TsdtechColors.error,
    borderRadius: 8.0,
    fontFamily: null,
    brightness: Brightness.light,
  );
}