rsgt 0.2.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,
}

pub enum ComponentColor {
    /// White
    White,
    /// White gray
    WhiteGray,
    /// Gray
    Gray,
    /// Black
    Black,
    /// Red
    Red,
    /// Green
    Green,
    /// Blue
    Blue,

    /// Custom color
    /// r,g,b,a
    CustomColor(f64,f64,f64,f64)
}