User:FakerofDeadlock/common.css: Difference between revisions
Jump to navigation
Jump to search
Created page with "body { background-color: #181818; color: #e0e0e0; } a, a:visited { color: #66aaff; } .mw-body, .mw-body-content, .vector-body { background-color: #181818; color: #e0e0e0; } .infobox, .navbox, .toc { background-color: #202020; color: #e0e0e0; } pre, code { background-color: #202020; color: #e0e0e0; }" |
No edit summary |
||
Line 1: | Line 1: | ||
body { | /* General background and text color */ | ||
background-color: #181818; | body, .mw-body, .mw-body-content { | ||
color: #e0e0e0; | background-color: #181818; /* Dark background */ | ||
color: #e0e0e0; /* Light text */ | |||
} | } | ||
/* Links */ | |||
a, a:visited { | a, a:visited { | ||
color: #66aaff; | color: #66aaff; /* Light blue links */ | ||
} | } | ||
. | |||
background-color: # | /* Tables, infoboxes, and other boxes */ | ||
color: #e0e0e0; | table, .infobox, .navbox, .toc, pre, code { | ||
background-color: #202020; /* Slightly lighter dark background for boxes */ | |||
color: #e0e0e0; /* Light text */ | |||
} | } | ||
/* Headers */ | |||
h1, h2, h3, h4, h5, h6 { | |||
color: #ffffff; /* White headers */ | |||
color: # | |||
} | } |
Revision as of 16:58, 27 August 2024
/* General background and text color */
body, .mw-body, .mw-body-content {
background-color: #181818; /* Dark background */
color: #e0e0e0; /* Light text */
}
/* Links */
a, a:visited {
color: #66aaff; /* Light blue links */
}
/* Tables, infoboxes, and other boxes */
table, .infobox, .navbox, .toc, pre, code {
background-color: #202020; /* Slightly lighter dark background for boxes */
color: #e0e0e0; /* Light text */
}
/* Headers */
h1, h2, h3, h4, h5, h6 {
color: #ffffff; /* White headers */
}