MediaWiki:Monobook.css: Difference between revisions
Jump to navigation
Jump to search
Created page with "→All CSS here will be loaded for users of the MonoBook skin: @media (prefers-color-scheme: dark) { body { background-color: #121212; color: #e0e0e0; } a { color: #64b5f6; } a:visited { color: #bb86fc; } .mw-body { background-color: #1e1e1e; } →Adjust other specific classes as needed: }" |
(No difference)
|
Latest revision as of 01:40, 17 November 2024
/* All CSS here will be loaded for users of the MonoBook skin */
@media (prefers-color-scheme: dark) {
body {
background-color: #121212;
color: #e0e0e0;
}
a {
color: #64b5f6;
}
a:visited {
color: #bb86fc;
}
.mw-body {
background-color: #1e1e1e;
}
/* Adjust other specific classes as needed */
}