/* Tekstselectie: achtergrond 90% van frontcolor, tekstkleur licht en subtiel */
:root{
  --selection-bg: color-mix(in srgb, var(--frontcolor) 90%, transparent);
  --selection-fg: color-mix(in srgb, var(--lightcolor-mixed) 75%, transparent);
}

::selection{
  background-color: var(--selection-bg);
  color: var(--selection-fg);
}

::-moz-selection{
  background-color: var(--selection-bg);
  color: var(--selection-fg);
}