@open-slot-ui/pixi 0.12.0 → 0.12.1

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/dist/index.cjs CHANGED
@@ -4653,7 +4653,7 @@ function showBootError(opts = {}) {
4653
4653
  host.innerHTML = `
4654
4654
  <div class="openui-be-card">
4655
4655
  <div class="openui-be-icon" aria-hidden="true">
4656
- <svg viewBox="0 0 48 48" width="48" height="48"><path d="M24 4 3 42h42L24 4Z" fill="none" stroke="#ffc935" stroke-width="3" stroke-linejoin="round"/><rect x="22" y="18" width="4" height="12" rx="2" fill="#ffc935"/><circle cx="24" cy="35" r="2.4" fill="#ffc935"/></svg>
4656
+ <svg viewBox="0 0 48 48" width="46" height="46"><path d="M24 5 4 41h40L24 5Z" fill="none" stroke="#000" stroke-width="4" stroke-linejoin="round"/><rect x="22" y="19" width="4" height="12" rx="2" fill="#000"/><circle cx="24" cy="35.5" r="2.5" fill="#000"/></svg>
4657
4657
  </div>
4658
4658
  <h1 class="openui-be-title">${esc2(title)}</h1>
4659
4659
  <p class="openui-be-msg">${esc2(message)}</p>
@@ -4661,19 +4661,23 @@ function showBootError(opts = {}) {
4661
4661
  ${showReload ? `<button class="openui-be-reload" type="button">${esc2(opts.reloadLabel ?? "Reload")}</button>` : ""}
4662
4662
  </div>
4663
4663
  <style>
4664
+ /* MONOCHROME by design \u2014 a neutral black-and-white system card, no theme accent. */
4664
4665
  .openui-boot-error { position: fixed; inset: 0; z-index: 2147483000; display: grid; place-items: center;
4665
- font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; color: #e9edf2;
4666
- background: rgba(6,8,11,.92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
4667
- .openui-be-card { width: min(90%, 440px); text-align: center; padding: 38px 32px 34px;
4668
- background: #161b22; border: 1.5px solid #ffc935; border-radius: 16px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
4669
- .openui-be-icon { margin-bottom: 14px; line-height: 0; }
4670
- .openui-be-title { margin: 0 0 12px; font-size: 24px; font-weight: 800; color: #ffc935; letter-spacing: .3px; }
4671
- .openui-be-msg { margin: 0 0 20px; font-size: 15px; line-height: 1.55; color: #c4ccd6; }
4672
- .openui-be-detail { margin: 0 0 20px; font-size: 12px; line-height: 1.4; color: #78828f; word-break: break-word; }
4673
- .openui-be-reload { appearance: none; border: 0; cursor: pointer; padding: 13px 42px; border-radius: 999px;
4674
- background: #ffc935; color: #161b22; font-weight: 800; font-size: 15px; letter-spacing: .3px;
4675
- box-shadow: 0 8px 22px rgba(255,201,53,.32); transition: transform .12s, filter .12s; }
4676
- .openui-be-reload:hover { filter: brightness(1.06); }
4666
+ font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; color: #181b20;
4667
+ background: rgba(8,8,8,.62); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
4668
+ .openui-be-card { width: min(90%, 440px); text-align: center; padding: 40px 36px 32px;
4669
+ display: flex; flex-direction: column; align-items: center; gap: 14px;
4670
+ background: #fff; border: 4px solid #000; border-radius: 24px; box-shadow: 0 24px 60px rgba(0,0,0,.55); }
4671
+ .openui-be-icon { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 999px;
4672
+ border: 4px solid #000; line-height: 0; }
4673
+ .openui-be-title { margin: 0; font-size: 26px; font-weight: 800; color: #000; letter-spacing: .01em; }
4674
+ .openui-be-msg { margin: 0; font-size: 16px; line-height: 1.5; font-weight: 600; color: #3a3f47; max-width: 34ch; }
4675
+ .openui-be-detail { margin: 0; font-size: 12px; line-height: 1.4; color: #8a9099; word-break: break-word;
4676
+ font-family: ui-monospace, "SF Mono", Menlo, monospace; max-width: 40ch; }
4677
+ .openui-be-reload { appearance: none; cursor: pointer; margin-top: 8px; padding: 14px 42px; border-radius: 999px;
4678
+ border: 4px solid #000; background: #000; color: #fff; font-weight: 800; font-size: 16px; letter-spacing: .03em;
4679
+ transition: transform .1s ease, background .12s ease; }
4680
+ .openui-be-reload:hover { background: #1c1c1c; }
4677
4681
  .openui-be-reload:active { transform: scale(.96); }
4678
4682
  </style>`;
4679
4683
  if (showReload) {