Skip to content

Commit 662c659

Browse files
committed
Add Color::GRAY
1 parent 81f6429 commit 662c659

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lighthouse-protocol/src/utils/color.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ pub struct Color {
1414

1515
impl Color {
1616
pub const BLACK: Self = Self { red: 0, green: 0, blue: 0 };
17+
pub const GRAY: Self = Self { red: 128, green: 128, blue: 128 };
1718
pub const WHITE: Self = Self { red: 255, green: 255, blue: 255 };
1819
pub const RED: Self = Self { red: 255, green: 0, blue: 0 };
1920
pub const GREEN: Self = Self { red: 0, green: 255, blue: 0 };

0 commit comments

Comments
 (0)