@evidentpoint/readium-css
Version:
A set of reference stylesheets for EPUB Reading Systems
23 lines (17 loc) • 614 B
CSS
/* Readium CSS
Custom colors pref
A submodule managing custom colors for user settings
Part of “Chrome Advanced” class – no flag required.
Repo: https://github.com/readium/readium-css */
:root[style*="--USER__backgroundColor"] {
background-color: var(--USER__backgroundColor) ;
}
:root[style*="--USER__backgroundColor"] * {
background-color: transparent ;
}
:root[style*="--USER__textColor"] {
color: var(--USER__textColor) ;
}
:root[style*="--USER__textColor"] *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(pre) {
color: inherit ;
}