//! Windows color scheme detection
usecrate::theme::ColorScheme;/// Detect the system color scheme on Windows
pubfndetect_color_scheme()-> ColorScheme{// TODO: Use Windows.UI.ViewManagement.UISettings
// For now, default to light
ColorScheme::Light
}