ContentTheme constructor

ContentTheme({
  1. Color background = const Color(0xfffafbfe),
  2. Color onBackground = const Color(0xffF1F1F2),
  3. Color primary = const Color(0xff006784),
  4. Color onPrimary = const Color(0xffffffff),
  5. Color disabled = const Color(0xffffffff),
  6. Color onDisabled = const Color(0xffffffff),
  7. Color secondary = const Color(0xff6c757d),
  8. Color onSecondary = const Color(0xffffffff),
  9. Color success = const Color(0xff198754),
  10. Color onSuccess = const Color(0xffffffff),
  11. Color danger = const Color(0xffdc3545),
  12. Color onDanger = const Color(0xffffffff),
  13. Color warning = const Color(0xffffc107),
  14. Color onWarning = const Color(0xff313a46),
  15. Color info = const Color(0xff0dcaf0),
  16. Color onInfo = const Color(0xffffffff),
  17. Color light = const Color(0xffeef2f7),
  18. Color onLight = const Color(0xff313a46),
  19. Color dark = const Color(0xff313a46),
  20. Color onDark = const Color(0xffffffff),
  21. Color cardBackground = const Color(0xffffffff),
  22. Color cardShadow = const Color(0xffffffff),
  23. Color cardBorder = const Color(0xffffffff),
  24. Color cardText = const Color(0xff6c757d),
  25. Color cardTextMuted = const Color(0xff98a6ad),
  26. Color title = const Color(0xff6c757d),
})

Implementation

ContentTheme({
  this.background = const Color(0xfffafbfe),
  this.onBackground = const Color(0xffF1F1F2),
  this.primary = const Color(0xff006784),
  this.onPrimary = const Color(0xffffffff),
  this.disabled = const Color(0xffffffff),
  this.onDisabled = const Color(0xffffffff),
  this.secondary = const Color(0xff6c757d),
  this.onSecondary = const Color(0xffffffff),
  this.success = const Color(0xff198754),
  this.onSuccess = const Color(0xffffffff),
  this.danger = const Color(0xffdc3545),
  this.onDanger = const Color(0xffffffff),
  this.warning = const Color(0xffffc107),
  this.onWarning = const Color(0xff313a46),
  this.info = const Color(0xff0dcaf0),
  this.onInfo = const Color(0xffffffff),
  this.light = const Color(0xffeef2f7),
  this.onLight = const Color(0xff313a46),
  this.dark = const Color(0xff313a46),
  this.onDark = const Color(0xffffffff),
  this.cardBackground = const Color(0xffffffff),
  this.cardShadow = const Color(0xffffffff),
  this.cardBorder = const Color(0xffffffff),
  this.cardText = const Color(0xff6c757d),
  this.cardTextMuted = const Color(0xff98a6ad),
  this.title = const Color(0xff6c757d),
});