blinc_theme 0.5.0

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

use crate::theme::ColorScheme;

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