renderkit/raylib/
palette.rs1
2pub const LIGHTGRAY: rgb::RGB8 = rgb::RGB8::new(200, 200, 200);
4
5pub const GRAY: rgb::RGB8 = rgb::RGB8::new(130, 130, 130);
7
8pub const DARKGRAY: rgb::RGB8 = rgb::RGB8::new(80, 80, 80);
10
11pub const YELLOW: rgb::RGB8 = rgb::RGB8::new(253, 249, 0);
13
14pub const GOLD: rgb::RGB8 = rgb::RGB8::new(255, 203, 0);
16
17pub const ORANGE: rgb::RGB8 = rgb::RGB8::new(255, 161, 0);
19
20pub const PINK: rgb::RGB8 = rgb::RGB8::new(255, 109, 194);
22
23pub const RED: rgb::RGB8 = rgb::RGB8::new(230, 41, 55);
25
26pub const MAROON: rgb::RGB8 = rgb::RGB8::new(190, 33, 55);
28
29pub const GREEN: rgb::RGB8 = rgb::RGB8::new(0, 228, 48);
31
32pub const LIME: rgb::RGB8 = rgb::RGB8::new(0, 158, 47);
34
35pub const DARKGREEN: rgb::RGB8 = rgb::RGB8::new(0, 117, 44);
37
38pub const SKYBLUE: rgb::RGB8 = rgb::RGB8::new(102, 191, 255);
40
41pub const BLUE: rgb::RGB8 = rgb::RGB8::new(0, 121, 241);
43
44pub const DARKBLUE: rgb::RGB8 = rgb::RGB8::new(0, 82, 172);
46
47pub const PURPLE: rgb::RGB8 = rgb::RGB8::new(200, 122, 255);
49
50pub const VIOLET: rgb::RGB8 = rgb::RGB8::new(135, 60, 190);
52
53pub const DARKPURPLE: rgb::RGB8 = rgb::RGB8::new(112, 31, 126);
55
56pub const BEIGE: rgb::RGB8 = rgb::RGB8::new(211, 176, 131);
58
59pub const BROWN: rgb::RGB8 = rgb::RGB8::new(127, 106, 79);
61
62pub const DARKBROWN: rgb::RGB8 = rgb::RGB8::new(76, 63, 47);
64
65pub const WHITE: rgb::RGB8 = rgb::RGB8::new(255, 255, 255);
67
68pub const BLACK: rgb::RGB8 = rgb::RGB8::new(0, 0, 0);
70
71pub const BLANK: rgb::RGBA8 = rgb::RGBA8::new(0, 0, 0, 0);
73
74pub const MAGENTA: rgb::RGB8 = rgb::RGB8::new(255, 0, 255);
76
77pub const RAYWHITE: rgb::RGB8 = rgb::RGB8::new(245, 245, 245);