ColorCollection constructor

ColorCollection()

Implementation

ColorCollection() {
  setColors(
    background: const Color.fromRGBO(243, 243, 243, 1),
    backgroundItem: const Color.fromRGBO(255, 255, 255, 1),
    backgroundOutline: Colors.grey[350],
    backgroundElevated: Colors.grey[600],
    text: const Color.fromRGBO(70, 70, 70, 1),
    textLight: const Color.fromRGBO(230, 230, 230, 1),
    textLink: Colors.blue[900],
    accent: const Color.fromRGBO(196, 90, 16, 1),
    accentLight: const Color.fromRGBO(214, 102, 24, 1),
    error: const Color.fromRGBO(211, 47, 47, 1),
    highlight: Colors.green,
    selected: const Color.fromRGBO(196, 90, 16, 1),
    shimmerBackground: const Color(0xFFEBEBF4),
    shimmerForeground: const Color(0xFFF4F4F4),
  );
}