diff --git a/src/color.ts b/src/color.ts index d425308..f660514 100644 --- a/src/color.ts +++ b/src/color.ts @@ -5,7 +5,7 @@ function getRgb(color: string): [number, number, number] { parseInt(color.substr(1, 2), 16), parseInt(color.substr(3, 2), 16), parseInt(color.substr(5, 2), 16) - ] + ]; } function toCssString(rgb: [number, number, number]): string {