/* Text selection highlight color.
   Lives in static/ because Tailwind v4, Svelte, and Vite all strip ::selection
   rules during compilation. Opaque values because Firefox ignores var()/color-mix()
   in ::selection. Light: accent #0b6467 at 15% over #fff. Dark: accent #4db8bb at 18% over #0f0f14. */
::selection { background-color: #dae8e9; }
html.dark ::selection { background-color: #1b2e31; }
/* Warm theme */
html[data-theme="warm"] ::selection { background-color: #f3e4cc; }
html[data-theme="warm"].dark ::selection { background-color: #3d2a14; }
/* Cool theme */
html[data-theme="cool"] ::selection { background-color: #ddd6fe; }
html[data-theme="cool"].dark ::selection { background-color: #1e1b4b; }
/* Cosmos theme */
html[data-theme="cosmos"] ::selection { background-color: #ddd6fe; }
html[data-theme="cosmos"].dark ::selection { background-color: #1e1145; }
