Add black color

This commit is contained in:
spingus
2025-04-25 19:05:47 -07:00
committed by GitHub
parent fea56134b0
commit 0687016677

View File

@@ -30,6 +30,13 @@ impl Color {
green: 0,
blue: 0,
};
pub const BLACK: Self = Self {
alpha: 0xff,
red: 0,
green: 0,
blue: 0,
};
}
pub struct WlClient {