rsgt 0.3.5

Rust simple GUI Toolkit
//========================================================================
// RSGT | theme.rs - https://overtimecoder.github.io
//------------------------------------------------------------------------
// Application themes
//------------------------------------------------------------------------
//
// Author LatteS
//
// File was created in 2023/01/07
//
//========================================================================

/// Window themes
/// Enumerator for specifying the window theme
pub enum WindowTheme {
    /// Follow the system settings
    Auto,
    /// Light theme
    Light,
    /// Dark theme
    Dark,
}