aboutsummaryrefslogtreecommitdiff
path: root/src/Utils.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-05-18 23:15:49 -0400
committerbobzel <zzzman@gmail.com>2024-05-18 23:15:49 -0400
commit9badfc489f00afd10489f0dde0a3b9e21817feb5 (patch)
treeb69d90fb3525d0bfca4a107ec1640e4706c0dfb6 /src/Utils.ts
parent38d2d361aa723917b5721e2635933d2d8b9f483a (diff)
more cardView cleanup
Diffstat (limited to 'src/Utils.ts')
-rw-r--r--src/Utils.ts1
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