@theme-registry/refract 0.1.10 → 0.1.11

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/cli.js CHANGED
@@ -6669,8 +6669,13 @@ const CHROME_CSS = `
6669
6669
  --rfp-ui:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
6670
6670
  font-family:var(--rfp-ui);font-size:14px;line-height:1.55;color:var(--rfp-ink);
6671
6671
  background:var(--rfp-ground);-webkit-font-smoothing:antialiased;
6672
- display:grid;grid-template-columns:216px minmax(0,1fr);gap:56px;max-width:1260px;margin:0 auto;
6673
- padding:0 32px 96px;align-items:start;box-sizing:border-box}
6672
+ display:grid;grid-template-columns:216px minmax(0,1fr);gap:56px;width:100%;min-height:100vh;
6673
+ padding:0 40px 96px;align-items:start;box-sizing:border-box}
6674
+ /* Full-bleed geometry. :where() gives these ZERO specificity, so a theme's own globals rules
6675
+ still win - the chrome resets the UA gutter and declares a scheme without ever outranking the
6676
+ theme it is displaying. The ground is painted by .rfp itself, which now fills the viewport. */
6677
+ :where(html){color-scheme:light dark}
6678
+ :where(body){margin:0}
6674
6679
  @media (prefers-color-scheme:dark){.rfp{--rfp-ground:#0f1114;--rfp-panel:#1a1e24;--rfp-panel-2:#232830;
6675
6680
  --rfp-ink:#e9ebef;--rfp-ink-2:#a8b0bd;--rfp-ink-3:#7b8492;--rfp-rule:#2b313a;--rfp-rule-2:#3b434f;
6676
6681
  --rfp-focus:#8ea2ff;--rfp-live:#4ec48d;--rfp-spec:#8791a0;--rfp-spec-2:#4a5361;--rfp-hatch:#333b46;