NomoColors constructor

const NomoColors({
  1. required Brightness brightness,
  2. required Color primary,
  3. required Color onPrimary,
  4. required Color primaryContainer,
  5. required Color secondary,
  6. required Color onSecondary,
  7. required Color secondaryContainer,
  8. required Color background1,
  9. required Color background2,
  10. required Color background3,
  11. required Color surface,
  12. required Color error,
  13. required Color disabled,
  14. required Color foreground1,
  15. required Color foreground2,
  16. required Color foreground3,
  17. required Color onDisabled,
})

Implementation

const NomoColors({
  required this.brightness,
  required this.primary,
  required this.onPrimary,
  required this.primaryContainer,
  required this.secondary,
  required this.onSecondary,
  required this.secondaryContainer,
  required this.background1,
  required this.background2,
  required this.background3,
  required this.surface,
  required this.error,
  required this.disabled,
  required this.foreground1,
  required this.foreground2,
  required this.foreground3,
  required this.onDisabled,
});