/* site-theme.css
   Desktop backdrop override for HyperLite. A white background with a fine
   gray dither pattern laid over it, so it reads as a soft classic-Mac gray.
   Kept separate from styles.css so it stays drop-in and easy to revert
   (delete this file + its <link>). */

body {
    background-color: #ffffff;
    background-image: repeating-conic-gradient(
        #8a8a8a 0% 25%,
        #ffffff 0% 50%
    );
    background-size: 4px 4px;
    background-position: 0 0;
}
