/// Extracted color info
////// This is only for the binary format. RGB values that are in plaintext are
/// behind a [TextToken::Header](crate::TextToken::Header) of `rgb`
#[derive(Debug, Clone, Copy, PartialEq, Eq)]pubstructRgb{/// Red channel
pubr:u32,
/// Green channel
pubg:u32,
/// Blue channel
pubb:u32,
/// Optional alpha channel
puba:Option<u32>,
}