rsgt 0.3.5

Rust simple GUI Toolkit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//========================================================================
// RSGT | color.rs - https://overtimecoder.github.io
//------------------------------------------------------------------------
// Color handling
//------------------------------------------------------------------------
//
// Author LatteS
//
// File was created in 2023/01/11
//
//========================================================================

pub enum Color {
    /// Custom color
    /// r,g,b,a
    CustomColor(f64, f64, f64, f64),
}