@bobfrankston/rmfmail 1.1.70 → 1.1.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/client/app.js CHANGED
@@ -2553,7 +2553,9 @@ onWsEvent((event) => {
2553
2553
  const text = document.getElementById("alert-text");
2554
2554
  if (banner && text) {
2555
2555
  banner.hidden = false;
2556
- banner.style.background = "oklch(0.45 0.12 250)";
2556
+ // Green update banner matches the Android update bar Bob
2557
+ // likes (was blue, oklch hue 250).
2558
+ banner.style.background = "oklch(0.52 0.14 150)";
2557
2559
  // Stash the update banner contents so updateFailed can restore
2558
2560
  // it (offering a retry) instead of leaving "Updating..." pinned.
2559
2561
  const restoreHtml = `${APP_NAME} ${event.latest} available (you have ${event.current}) — <button id="btn-do-update" style="background:none;border:1px solid #fff;color:#fff;padding:0.15em 0.5em;border-radius:3px;cursor:pointer;margin-left:0.5em">Update now</button>`;