From fa7f2fdca4595f26cfdaedab710c9a27d5648923 Mon Sep 17 00:00:00 2001 From: "diamondburned (Forefront)" Date: Wed, 3 Jun 2020 21:15:52 -0700 Subject: [PATCH] Fixed color hexadecimal invalid size --- text/text.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/text.go b/text/text.go index 446c86f..483d64b 100644 --- a/text/text.go +++ b/text/text.go @@ -35,7 +35,7 @@ type Imager interface { // Colorer is a text color format that a segment could implement. This is to be // applied directly onto the text. type Colorer interface { - Color() uint16 + Color() uint32 } // Attributor is a rich text markup format that a segment could implement. This