From 825de6efb525226c0de8fae4441d7656640fb824 Mon Sep 17 00:00:00 2001 From: Tai Groot Date: Wed, 4 Mar 2026 09:30:52 +0000 Subject: [PATCH] fix(simplecolor): remove unused conversionPalette type --- simplecolor/simplecolors.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/simplecolor/simplecolors.go b/simplecolor/simplecolors.go index f57a823..708fd72 100644 --- a/simplecolor/simplecolors.go +++ b/simplecolor/simplecolors.go @@ -11,10 +11,9 @@ import ( const TotalHexColorspace = 0xffffff + 1 type ( - SimpleColor int - NamedPalette map[string]SimpleColor - SimplePalette []SimpleColor - conversionPalette []color.Color + SimpleColor int + NamedPalette map[string]SimpleColor + SimplePalette []SimpleColor ) func (n NamedPalette) Get(name string) SimpleColor {