summaryrefslogtreecommitdiffstats
path: root/ui/src/utils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/utils.ts')
-rw-r--r--ui/src/utils.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/ui/src/utils.ts b/ui/src/utils.ts
index 46b393d9..bdd629c7 100644
--- a/ui/src/utils.ts
+++ b/ui/src/utils.ts
@@ -767,3 +767,7 @@ export function postSort(
);
}
}
+
+export function randomHsl() {
+ return `hsla(${Math.random() * 360}, 100%, 50%, 1)`;
+}