Skip to content

Commit 522788f

Browse files
committed
Adds missing semi
1 parent ef6e5b1 commit 522788f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/shared/colors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function lighten(color: string, percentage: number) {
1919

2020
const [r, g, b, a] = rgba;
2121
percentage = (255 * percentage) / 100;
22-
return `rgba(${adjustLight(r, percentage)}, ${adjustLight(g, percentage)}, ${adjustLight(b, percentage)}, ${a})`
22+
return `rgba(${adjustLight(r, percentage)}, ${adjustLight(g, percentage)}, ${adjustLight(b, percentage)}, ${a})`;
2323
}
2424

2525
export function opacity(color: string, percentage: number) {

0 commit comments

Comments
 (0)