CLTheme constructor

const CLTheme({
  1. required Color primary,
  2. required Color secondary,
  3. required Color alternate,
  4. required Color primaryText,
  5. required Color secondaryText,
  6. required Color primaryBackground,
  7. required Color secondaryBackground,
  8. required Color tertiaryBackground,
  9. required Color success,
  10. required Color warning,
  11. required Color danger,
  12. required Color info,
  13. required Color borderColor,
  14. required Color background,
  15. required Color fillColor,
  16. required Color muted,
  17. required Color mutedForeground,
  18. required Color accent,
  19. required Color accentForeground,
  20. required Color ring,
  21. required Color cardBorder,
  22. required Color idColor,
  23. required Color certColor,
  24. required Color hrColor,
  25. required Color lmsColor,
})

Implementation

const CLTheme({
  required this.primary,
  required this.secondary,
  required this.alternate,
  required this.primaryText,
  required this.secondaryText,
  required this.primaryBackground,
  required this.secondaryBackground,
  required this.tertiaryBackground,
  required this.success,
  required this.warning,
  required this.danger,
  required this.info,
  required this.borderColor,
  required this.background,
  required this.fillColor,
  required this.muted,
  required this.mutedForeground,
  required this.accent,
  required this.accentForeground,
  required this.ring,
  required this.cardBorder,
  required this.idColor,
  required this.certColor,
  required this.hrColor,
  required this.lmsColor,
});