MenuColors.dark constructor

MenuColors.dark()

Implementation

MenuColors.dark() {
  if (Platform.I.isDesktop) {
    backgroundColor = const Color(0xFF262626);
    searchBarBackgroundColor = const Color(0xFF202020);
    searchBarBorderColor = const Color(0xFF343434);
    searchBarEnabledColor = backgroundColor;
    searchBarFocusedColor = const Color(0xFF00a884);
    buttonColor = const Color(0xFF7d7d7d);
    iconHoveredBackgroundColor = Color.fromARGB(255, 75, 75, 75);
    menuSelectedIconColor = const Color(0xFF037e69);
    indicatorColor = Colors.transparent;
  } else {
    backgroundColor = const Color(0xFF121b22);
    searchBarBackgroundColor = const Color(0xFF1f2c34);
    searchBarBorderColor = Colors.transparent;
    searchBarEnabledColor = Colors.transparent;
    searchBarFocusedColor = Colors.transparent;
    buttonColor = const Color(0xFF627885);
    iconHoveredBackgroundColor = Colors.transparent;
    menuSelectedIconColor = Colors.white;
    indicatorColor = const Color(0xFF037e69);
  }
}