Open bug report

loader.html carries the off-brand teal (#00b8b0 / rgb 0,184,176); brand is #00b8b1

John Lauer · 15d ago

loader.html ships the off-brand teal: #00b8b0 (4 places: the favicon data URI, the canvas fillStyle, the interact-hint border and text color) and rgba(0,184,176,...) (2 places in the hint box-shadow). The brand teal is #00b8b1 / rgb(0,184,177).

Found the honest way: Hydrogen Desktop vendored loader.html as its workspace splash and HD's check-brand-teal build gate rejected the build. That gate exists because this exact one-digit-off teal once spread into 148 places via copy-paste, and it matches components rather than spellings, so hex, URL-encoded, and decimal forms all trip it.

Fix is a two-substitution sed: 00b8b0 -> 00b8b1 and 0,184,176 -> 0,184,177. HD's vendored copy is already corrected; fixing it here stops every future embedder from inheriting the drift. Worth checking orbital-lab.html and readme.html for the same values while in there.

0 Replies

Log in to reply.