2. Excluded from 1 are _custom_ Properties. Those inherit from the originating element.
That way you can access custom props declared on `:root` from within `::selection { … }` but also that you can change a customprop on an element and the `::selection` will use the new value.
Practically this means you need to write your styles as follows:
```css
/* Regular props = target the element’s ::selection */
main::selection {
color: red;
}
/* Custom props = target *::selection */
::selection {
background: var(--bg, transparent);
}
```