CLTheme constructor
const
CLTheme({
- required Color primary,
- required Color secondary,
- required Color alternate,
- required Color primaryText,
- required Color secondaryText,
- required Color primaryBackground,
- required Color secondaryBackground,
- required Color tertiaryBackground,
- required Color success,
- required Color warning,
- required Color danger,
- required Color info,
- required Color borderColor,
- required Color background,
- required Color fillColor,
- required Color muted,
- required Color mutedForeground,
- required Color accent,
- required Color accentForeground,
- required Color ring,
- required Color cardBorder,
- required Color controlFill,
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.controlFill,
});