diff options
author | bobzel <zzzman@gmail.com> | 2024-05-18 23:15:49 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-05-18 23:15:49 -0400 |
commit | 9badfc489f00afd10489f0dde0a3b9e21817feb5 (patch) | |
tree | b69d90fb3525d0bfca4a107ec1640e4706c0dfb6 /src/Utils.ts | |
parent | 38d2d361aa723917b5721e2635933d2d8b9f483a (diff) |
more cardView cleanup
Diffstat (limited to 'src/Utils.ts')
-rw-r--r-- | src/Utils.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Utils.ts b/src/Utils.ts index fb72a5836..291d7c799 100644 --- a/src/Utils.ts +++ b/src/Utils.ts @@ -179,7 +179,6 @@ export namespace Utils { export function toRGBAstr(col: { r: number; g: number; b: number; a?: number }) { return 'rgba(' + col.r + ',' + col.g + ',' + col.b + (col.a !== undefined ? ',' + col.a : '') + ')'; } - export function HSLtoRGB(h: number, s: number, l: number) { // Must be fractions of 1 |