diff --git a/client/web/src/response-handler.ts b/client/web/src/response-handler.ts index 38284a6f7..5f842644a 100644 --- a/client/web/src/response-handler.ts +++ b/client/web/src/response-handler.ts @@ -78,7 +78,7 @@ export interface Color { alpha: number; } function newColor(input: any): Color { - return { red: input.red * 255, green: input.green * 255, blue: input.blue * 255, alpha: input.alpha * 255 }; + return { red: input.red * 255, green: input.green * 255, blue: input.blue * 255, alpha: input.alpha }; } export interface UpdateWorkingColors {