1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
section#api-documentation div.highlight pre {
color: #b30000;
display: block; /* ensures it's treated as a block */
margin-left: auto; /* auto margins center block elements */
margin-right: auto;
width: fit-content;
}
body[data-theme="light"] section#api-documentation div.highlight,
body[data-theme="light"] section#api-documentation div.highlight pre {
background-color: #f8f8f8;
}
body[data-theme="dark"] section#api-documentation div.highlight,
body[data-theme="dark"] section#api-documentation div.highlight pre {
background-color: #202020;
}
/* AUTO → system prefers DARK (acts like dark unless user forced light) */
@media (prefers-color-scheme: dark) {
body:not([data-theme="light"]) #api-documentation .highlight,
body:not([data-theme="light"]) #api-documentation .highlight pre {
background-color: #202020;
}
}
/* AUTO → system prefers LIGHT (acts like light unless user forced dark) */
@media (prefers-color-scheme: light) {
body:not([data-theme="dark"]) #api-documentation .highlight,
body:not([data-theme="dark"]) #api-documentation .highlight pre {
background-color: #f8f8f8;
}
}
|