diff --git a/frontend-svelte/src/components/floating-menus/ColorPicker.svelte b/frontend-svelte/src/components/floating-menus/ColorPicker.svelte
index 9eafeb5b..b45b8326 100644
--- a/frontend-svelte/src/components/floating-menus/ColorPicker.svelte
+++ b/frontend-svelte/src/components/floating-menus/ColorPicker.svelte
@@ -306,7 +306,7 @@
value={newColor.toHexOptionalAlpha() || "-"}
on:commitText={({ detail }) => setColorCode(detail)}
centered={true}
- tooltip="Color code in hexadecimal format. 6 digits if opaque, 8 with alpha.\nAccepts input of CSS color values including named colors."
+ tooltip={"Color code in hexadecimal format. 6 digits if opaque, 8 with alpha.\nAccepts input of CSS color values including named colors."}
/>
@@ -347,8 +347,8 @@
unit={channel === "h" ? "°" : "%"}
minWidth={56}
tooltip={{
- h: "Hue component, the "color" along the rainbow",
- s: "Saturation component, the "colorfulness" from gray to vivid",
+ h: `Hue component, the "color" along the rainbow`,
+ s: `Saturation component, the "colorfulness" from gray to vivid`,
v: "Value (or Brightness), the distance away from being darkened to black",
}[channel]}
/>
diff --git a/frontend-svelte/src/components/floating-menus/MenuList.svelte b/frontend-svelte/src/components/floating-menus/MenuList.svelte
index 17ccabec..68588a25 100644
--- a/frontend-svelte/src/components/floating-menus/MenuList.svelte
+++ b/frontend-svelte/src/components/floating-menus/MenuList.svelte
@@ -1,3 +1,5 @@
+
+