math-api icon indicating copy to clipboard operation
math-api copied to clipboard

Adjust theme for selection and tab navigation

Open T3sT3ro opened this issue 1 year ago • 0 comments

https://github.com/uetchy/math-api/blob/f2cb768241cf034b20aa6d1761d49d0d254f1645/index.html

Add the following to styles, otherwise the selection and focus is hardly visible:

:root {
    --accent-triadic: #FF5E05;
}

.input-field::selection {
    background: var(--accent-triadic);
}

*:focus-visible {
    outline: .25em solid var(--accent-triadic);
    outline-offset: .25em;
}

T3sT3ro avatar Apr 05 '24 12:04 T3sT3ro