ProKitThemeModel constructor

ProKitThemeModel({
  1. Color? primary,
  2. Color? primaryLight,
  3. Color? primaryDark,
  4. Color? secondary,
  5. Color? secondaryLight,
  6. Color? secondaryDark,
  7. Color? accent,
  8. Color? accentLight,
  9. Color? accentDark,
  10. Color? background,
  11. Color? backgroundSub,
  12. Color? scaffold,
  13. Color? scaffoldDark,
  14. Color? text,
  15. Color? textSub,
  16. Color? textSub2,
  17. Color? textInverse,
  18. Color? textInverseSub,
  19. Color? textDisabled,
  20. Color? error,
  21. Color? warning,
  22. Color? success,
  23. Color? info,
  24. Color? shadow,
  25. Color? shadowSub,
  26. Color? divider,
  27. Color? border,
  28. Color? card,
  29. Color? cardSub,
  30. Color? button,
  31. Color? buttonText,
  32. Color? buttonDisabled,
  33. Color? buttonTextDisabled,
  34. Color? icon,
  35. Color? iconSub,
  36. Color? iconDisabled,
  37. Color? appBarBackground,
  38. Color? appBarText,
  39. Color? appBarIcon,
  40. Color? tabBarBackground,
  41. Color? tabBarText,
  42. Color? tabBarIcon,
})

Implementation

ProKitThemeModel({
  this.primary,
  this.primaryLight,
  this.primaryDark,
  this.secondary,
  this.secondaryLight,
  this.secondaryDark,
  this.accent,
  this.accentLight,
  this.accentDark,
  this.background,
  this.backgroundSub,
  this.scaffold,
  this.scaffoldDark,
  this.text,
  this.textSub,
  this.textSub2,
  this.textInverse,
  this.textInverseSub,
  this.textDisabled,
  this.error,
  this.warning,
  this.success,
  this.info,
  this.shadow,
  this.shadowSub,
  this.divider,
  this.border,
  this.card,
  this.cardSub,
  this.button,
  this.buttonText,
  this.buttonDisabled,
  this.buttonTextDisabled,
  this.icon,
  this.iconSub,
  this.iconDisabled,
  this.appBarBackground,
  this.appBarText,
  this.appBarIcon,
  this.tabBarBackground,
  this.tabBarText,
  this.tabBarIcon,
});