TsdtechThemeData.dark constructor

TsdtechThemeData.dark()

Default dark theme using the TSDTech brand palette.

Implementation

factory TsdtechThemeData.dark() {
  return const TsdtechThemeData(
    primaryColor: TsdtechColors.primaryLight,
    primaryLightColor: TsdtechColors.accent,
    primaryDarkColor: TsdtechColors.primary,
    accentColor: TsdtechColors.accentLight,
    backgroundColor: TsdtechColors.darkBackground,
    surfaceColor: TsdtechColors.darkSurface,
    surfaceVariantColor: TsdtechColors.darkSurfaceVariant,
    outlineColor: TsdtechColors.darkOutline,
    textPrimaryColor: TsdtechColors.darkTextPrimary,
    textSecondaryColor: TsdtechColors.darkTextSecondary,
    textDisabledColor: TsdtechColors.darkTextDisabled,
    textOnPrimaryColor: TsdtechColors.white,
    successColor: TsdtechColors.success,
    warningColor: TsdtechColors.warning,
    errorColor: TsdtechColors.error,
    borderRadius: 8.0,
    fontFamily: null,
    brightness: Brightness.dark,
  );
}