renderkit 1.0.0

Automatic raw Rust bindings to raylib
Documentation

// Light Gray
pub const LIGHTGRAY: rgb::RGB8 = rgb::RGB8::new(200, 200, 200);

// Gray
pub const GRAY: rgb::RGB8 = rgb::RGB8::new(130, 130, 130);

// Dark Gray
pub const DARKGRAY: rgb::RGB8 = rgb::RGB8::new(80, 80, 80);

// Yellow
pub const YELLOW: rgb::RGB8 = rgb::RGB8::new(253, 249, 0);

// Gold
pub const GOLD: rgb::RGB8 = rgb::RGB8::new(255, 203, 0);

// Orange
pub const ORANGE: rgb::RGB8 = rgb::RGB8::new(255, 161, 0);

// Pink
pub const PINK: rgb::RGB8 = rgb::RGB8::new(255, 109, 194);

// Red
pub const RED: rgb::RGB8 = rgb::RGB8::new(230, 41, 55);

// Maroon
pub const MAROON: rgb::RGB8 = rgb::RGB8::new(190, 33, 55);

// Green
pub const GREEN: rgb::RGB8 = rgb::RGB8::new(0, 228, 48);

// Lime
pub const LIME: rgb::RGB8 = rgb::RGB8::new(0, 158, 47);

// Dark Green
pub const DARKGREEN: rgb::RGB8 = rgb::RGB8::new(0, 117, 44);

// Sky Blue
pub const SKYBLUE: rgb::RGB8 = rgb::RGB8::new(102, 191, 255);

// Blue
pub const BLUE: rgb::RGB8 = rgb::RGB8::new(0, 121, 241);

// Dark Blue
pub const DARKBLUE: rgb::RGB8 = rgb::RGB8::new(0, 82, 172);

// Purple
pub const PURPLE: rgb::RGB8 = rgb::RGB8::new(200, 122, 255);    

// Violet
pub const VIOLET: rgb::RGB8 = rgb::RGB8::new(135, 60, 190);

// Dark Purple
pub const DARKPURPLE: rgb::RGB8 = rgb::RGB8::new(112, 31, 126);

// Beige
pub const BEIGE: rgb::RGB8 = rgb::RGB8::new(211, 176, 131);

// Brown
pub const BROWN: rgb::RGB8 = rgb::RGB8::new(127, 106, 79);  

// Dark Brown
pub const DARKBROWN: rgb::RGB8 = rgb::RGB8::new(76, 63, 47);

// White
pub const WHITE: rgb::RGB8 = rgb::RGB8::new(255, 255, 255);

// Black
pub const BLACK: rgb::RGB8 = rgb::RGB8::new(0, 0, 0);

// Blank
pub const BLANK: rgb::RGBA8 = rgb::RGBA8::new(0, 0, 0, 0);

// Magenta
pub const MAGENTA: rgb::RGB8 = rgb::RGB8::new(255, 0, 255);

// Raylib WHite
pub const RAYWHITE: rgb::RGB8 = rgb::RGB8::new(245, 245, 245);