diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 72fa9499e..8368d619f 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -194,4 +194,20 @@ } } } + + /* TODO: remove this block once Pink V2 is incorporated */ + input[type='radio'], + input[type='checkbox']:not([class='switch']), + input[type='switchbox'] { + .theme-dark &:not(:checked) { + background-color: transparent; /* take whatever color is behind */ + border: 1px solid var(--color-mid-neutral-70, #56565c); + } + } + + input[type='checkbox'][class='switch'] { + .theme-dark &:not(:checked) { + background-color: var(--color-mid-neutral-70, #56565c); + } + }