Theme
            Theme shows or hides elements depending on the selected theme (light or dark).
| Selector | Properties | 
|---|---|
  .u-only-light
 | 
  display: none!important;
 | 
  .u-only-dark
 | 
  display: none!important;
 | 
  #{$theme-dark} .u-only-dark
 | 
  display: block!important;
 | 
  body:not(#{$theme-dark}) .u-only-light
 | 
  display: block!important;
 |