We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81f6429 commit 662c659Copy full SHA for 662c659
lighthouse-protocol/src/utils/color.rs
@@ -14,6 +14,7 @@ pub struct Color {
14
15
impl Color {
16
pub const BLACK: Self = Self { red: 0, green: 0, blue: 0 };
17
+ pub const GRAY: Self = Self { red: 128, green: 128, blue: 128 };
18
pub const WHITE: Self = Self { red: 255, green: 255, blue: 255 };
19
pub const RED: Self = Self { red: 255, green: 0, blue: 0 };
20
pub const GREEN: Self = Self { red: 0, green: 255, blue: 0 };
0 commit comments