From 068701667710b7e641ab38d64637ea01b7fa7b65 Mon Sep 17 00:00:00 2001 From: spingus <130694806+chlorospingus@users.noreply.github.com> Date: Fri, 25 Apr 2025 19:05:47 -0700 Subject: [PATCH] Add black color --- src/wl_client.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/wl_client.rs b/src/wl_client.rs index a4b671b..69a7985 100644 --- a/src/wl_client.rs +++ b/src/wl_client.rs @@ -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 {