fix(simplecolor): remove unused conversionPalette type

This commit is contained in:
2026-03-04 09:30:52 +00:00
parent c4092d0697
commit 825de6efb5

View File

@@ -11,10 +11,9 @@ import (
const TotalHexColorspace = 0xffffff + 1 const TotalHexColorspace = 0xffffff + 1
type ( type (
SimpleColor int SimpleColor int
NamedPalette map[string]SimpleColor NamedPalette map[string]SimpleColor
SimplePalette []SimpleColor SimplePalette []SimpleColor
conversionPalette []color.Color
) )
func (n NamedPalette) Get(name string) SimpleColor { func (n NamedPalette) Get(name string) SimpleColor {