From 522788fe58b786f2290ff08c80442729102fa05c Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 18 Jun 2018 21:30:50 -0400 Subject: [PATCH] Adds missing semi --- src/ui/shared/colors.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/shared/colors.ts b/src/ui/shared/colors.ts index 64dfa9d..6c30f9d 100644 --- a/src/ui/shared/colors.ts +++ b/src/ui/shared/colors.ts @@ -19,7 +19,7 @@ export function lighten(color: string, percentage: number) { const [r, g, b, a] = rgba; percentage = (255 * percentage) / 100; - return `rgba(${adjustLight(r, percentage)}, ${adjustLight(g, percentage)}, ${adjustLight(b, percentage)}, ${a})` + return `rgba(${adjustLight(r, percentage)}, ${adjustLight(g, percentage)}, ${adjustLight(b, percentage)}, ${a})`; } export function opacity(color: string, percentage: number) {