ThemeStyles constructor

ThemeStyles({
  1. required Color backgroundStart,
  2. required Color backgroundMiddle,
  3. required Color backgroundEnd,
  4. required Color dialogBg,
  5. required Color textPrimary,
  6. required Color textSecondary,
  7. required Color textMuted,
  8. required Color inputBg,
  9. required Color inputBorder,
  10. required Color inputFocusRing,
  11. required Color uploadBorder,
  12. required Color uploadHoverBorder,
  13. required Color closeHoverBg,
  14. required Color overlayColor,
})

Implementation

ThemeStyles({
  required this.backgroundStart,
  required this.backgroundMiddle,
  required this.backgroundEnd,
  required this.dialogBg,
  required this.textPrimary,
  required this.textSecondary,
  required this.textMuted,
  required this.inputBg,
  required this.inputBorder,
  required this.inputFocusRing,
  required this.uploadBorder,
  required this.uploadHoverBorder,
  required this.closeHoverBg,
  required this.overlayColor,
});