From e495ec643999b5e4825d933d36ee029542f247f8 Mon Sep 17 00:00:00 2001 From: Noah Petherbridge Date: Wed, 8 Apr 2020 17:31:37 -0700 Subject: [PATCH] Add DarkGrey to the default color names --- interface.go | 1 + 1 file changed, 1 insertion(+) diff --git a/interface.go b/interface.go index ce7af8d..81066bf 100644 --- a/interface.go +++ b/interface.go @@ -177,6 +177,7 @@ var ( Invisible = Color{} White = RGBA(255, 255, 255, 255) Grey = RGBA(153, 153, 153, 255) + DarkGrey = RGBA(64, 64, 64, 255) Black = RGBA(0, 0, 0, 255) SkyBlue = RGBA(0, 153, 255, 255) Blue = RGBA(0, 0, 255, 255)