/* RawWhitePower — the inverse palette (spec 053). RawBlackPower is the
   default, defined by the :root tokens in style.css; this flips ink and
   ground and keeps the red. The switch is the nav toggle; choice lives
   in localStorage. */
:root[data-theme="rawwhite"] {
    --ink: #0a0a0a;
    --slate: #2a2a2a;
    --muted: #5a5a5a;
    --faint: #8a8a8a;
    --bg: #f2f2f2;
    --card: #f2f2f2;
    --border: #c8c8c8;
    --border-strong: #0a0a0a;
    --dark: #f2f2f2;
    --dark-ink: #0a0a0a;
    --dark-muted: #2a2a2a;
    --dark-faint: #5a5a5a;
    --dark-border: #c8c8c8;
    --on-teal: #f2f2f2;
    --hover: #e6e6e6;
    --hover-accent: #f5dcd8;
}
:root[data-theme="rawwhite"] body {
    background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.028) 0 1px, transparent 1px 3px);
}
:root[data-theme="rawwhite"] .prw-glyph > span {
    background-image: repeating-linear-gradient(135deg, transparent 0 12px, rgba(242,242,242,0.09) 12px 13px);
}
