Appearance.dark constructor

Appearance.dark()

Implementation

Appearance.dark() {
  name = "dark";
  backgroundColor = const Color(0xFF181818);
  textColor = Colors.white;
  btnColor = Colors.black;
  btnTextColor = Colors.white;
  hintColor = Colors.grey[500];
  iconColor = const Color.fromARGB(255, 192, 192, 192);
  secondaryBackgroundColor = const Color(0xFF252526);
  secondaryTextColor = Colors.white;
  secondaryBtnColor = const Color.fromARGB(255, 48, 50, 51);
  secondaryBtnTextColor = Colors.white;
  secondaryIconColor = const Color.fromARGB(255, 192, 192, 192);
  secondaryHintColor = Colors.grey[500];
  appBarBackgroundColor = const Color(0xFF333333);
  appBarBtnTextColor = Colors.white;
  appBarBtnColor = const Color.fromARGB(255, 48, 50, 51);
  appBarTextColor = Colors.white;
  appBarIconColor = const Color(0xFF858585);
  appBarHintColor = Colors.grey[500];
  drawerBackgroundColor = Colors.black;
  drawerBtnTextColor = Colors.white;
  drawerBtnColor = const Color.fromARGB(255, 48, 50, 51);
  drawerTextColor = Colors.white;
  drawerIconColor = const Color(0xFF858585);
  drawerHintColor = Colors.grey[500];
  dialogBackgroundColor = const Color(0xFF333333);
  dialogBtnTextColor = Colors.white;
  dialogBtnColor = const Color.fromARGB(255, 48, 50, 51);
  dialogIconColor = const Color.fromARGB(255, 192, 192, 192);
  dialogTextColor = const Color.fromARGB(255, 192, 192, 192);
  dialogHintColor = Colors.grey[500];
}