dark static method

Default dark theme

Implementation

static FluentAutoSuggestThemeData dark() {
  return FluentAutoSuggestThemeData(
    designSystem: AutoSuggestDesignSystem.fluent,
    overlayBackgroundColor: const Color(0xFF2D2D2D).withOpacity(0.95),
    overlayCardColor: const Color(0xFF2D2D2D),
    overlayBorderRadius: 4.0,
    itemSelectedBackgroundColor: Colors.blue.withOpacity(0.2),
    itemHoverBackgroundColor: Colors.white.withOpacity(0.1),
    loadingIndicatorColor: Colors.blue[300],
    iconColor: Colors.grey[400],
    clearButtonColor: Colors.grey[500],
    dropdownIconColor: Colors.grey[400],
  );
}