blinc_theme 0.5.1

Theming system for Blinc UI framework - colors, typography, and design tokens
Documentation
1
2
3
4
5
6
7
8
9
10
//! Windows color scheme detection

use crate::theme::ColorScheme;

/// Detect the system color scheme on Windows
pub fn detect_color_scheme() -> ColorScheme {
    // TODO: Use Windows.UI.ViewManagement.UISettings
    // For now, default to light
    ColorScheme::Light
}