renderkit/raylib/
palette.rs

1
2// Light Gray
3pub const LIGHTGRAY: rgb::RGB8 = rgb::RGB8::new(200, 200, 200);
4
5// Gray
6pub const GRAY: rgb::RGB8 = rgb::RGB8::new(130, 130, 130);
7
8// Dark Gray
9pub const DARKGRAY: rgb::RGB8 = rgb::RGB8::new(80, 80, 80);
10
11// Yellow
12pub const YELLOW: rgb::RGB8 = rgb::RGB8::new(253, 249, 0);
13
14// Gold
15pub const GOLD: rgb::RGB8 = rgb::RGB8::new(255, 203, 0);
16
17// Orange
18pub const ORANGE: rgb::RGB8 = rgb::RGB8::new(255, 161, 0);
19
20// Pink
21pub const PINK: rgb::RGB8 = rgb::RGB8::new(255, 109, 194);
22
23// Red
24pub const RED: rgb::RGB8 = rgb::RGB8::new(230, 41, 55);
25
26// Maroon
27pub const MAROON: rgb::RGB8 = rgb::RGB8::new(190, 33, 55);
28
29// Green
30pub const GREEN: rgb::RGB8 = rgb::RGB8::new(0, 228, 48);
31
32// Lime
33pub const LIME: rgb::RGB8 = rgb::RGB8::new(0, 158, 47);
34
35// Dark Green
36pub const DARKGREEN: rgb::RGB8 = rgb::RGB8::new(0, 117, 44);
37
38// Sky Blue
39pub const SKYBLUE: rgb::RGB8 = rgb::RGB8::new(102, 191, 255);
40
41// Blue
42pub const BLUE: rgb::RGB8 = rgb::RGB8::new(0, 121, 241);
43
44// Dark Blue
45pub const DARKBLUE: rgb::RGB8 = rgb::RGB8::new(0, 82, 172);
46
47// Purple
48pub const PURPLE: rgb::RGB8 = rgb::RGB8::new(200, 122, 255);    
49
50// Violet
51pub const VIOLET: rgb::RGB8 = rgb::RGB8::new(135, 60, 190);
52
53// Dark Purple
54pub const DARKPURPLE: rgb::RGB8 = rgb::RGB8::new(112, 31, 126);
55
56// Beige
57pub const BEIGE: rgb::RGB8 = rgb::RGB8::new(211, 176, 131);
58
59// Brown
60pub const BROWN: rgb::RGB8 = rgb::RGB8::new(127, 106, 79);  
61
62// Dark Brown
63pub const DARKBROWN: rgb::RGB8 = rgb::RGB8::new(76, 63, 47);
64
65// White
66pub const WHITE: rgb::RGB8 = rgb::RGB8::new(255, 255, 255);
67
68// Black
69pub const BLACK: rgb::RGB8 = rgb::RGB8::new(0, 0, 0);
70
71// Blank
72pub const BLANK: rgb::RGBA8 = rgb::RGBA8::new(0, 0, 0, 0);
73
74// Magenta
75pub const MAGENTA: rgb::RGB8 = rgb::RGB8::new(255, 0, 255);
76
77// Raylib WHite
78pub const RAYWHITE: rgb::RGB8 = rgb::RGB8::new(245, 245, 245);