Browse Source

Adds missing semi

main
Eric Amodio 6 years ago
parent
commit
522788fe58
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/ui/shared/colors.ts

+ 1
- 1
src/ui/shared/colors.ts View File

@ -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) {

Loading…
Cancel
Save