|
|
| Line 1: |
Line 1: |
| /* === Vector Dark Mode === */
| |
|
| |
|
| /* Body and main background */
| |
| .vector-body {
| |
| background-color: #000000;
| |
| color: #ffffff;
| |
| }
| |
|
| |
| /* Links */
| |
| a, a:visited {
| |
| color: #ffffff;
| |
| }
| |
| a:hover, a:focus {
| |
| color: #cccccc;
| |
| }
| |
|
| |
| /* Headers */
| |
| #content h1, #content h2, #content h3, #content h4, #content h5, #content h6 {
| |
| color: #ffffff;
| |
| }
| |
|
| |
| /* Page content */
| |
| #content, #bodyContent, .mw-parser-output {
| |
| background-color: #000000;
| |
| color: #ffffff;
| |
| }
| |
|
| |
| /* Infoboxes, tables, and other boxed content */
| |
| table, .infobox, .navbox, .vertical-navbox {
| |
| background-color: #111111;
| |
| color: #ffffff;
| |
| border-color: #333333;
| |
| }
| |
|
| |
| /* Menu and sidebar */
| |
| #mw-panel, .portal, .vector-menu-content {
| |
| background-color: #000000;
| |
| color: #ffffff;
| |
| border-color: #333333;
| |
| }
| |
|
| |
| /* Search box */
| |
| #searchInput, #searchButton {
| |
| background-color: #111111;
| |
| color: #ffffff;
| |
| border: 1px solid #333333;
| |
| }
| |
|
| |
| /* Footer */
| |
| #footer {
| |
| background-color: #000000;
| |
| color: #ffffff;
| |
| border-top: 1px solid #333333;
| |
| }
| |
|
| |
| /* Buttons */
| |
| button, input[type="submit"] {
| |
| background-color: #222222;
| |
| color: #ffffff;
| |
| border: 1px solid #555555;
| |
| }
| |
|
| |
| /* Tables text */
| |
| th, td {
| |
| color: #ffffff;
| |
| }
| |
|
| |
| /* Blockquotes */
| |
| blockquote {
| |
| background-color: #111111;
| |
| color: #ffffff;
| |
| border-left: 3px solid #555555;
| |
| }
| |
|
| |
| /* Code and preformatted text */
| |
| pre, code {
| |
| background-color: #111111;
| |
| color: #ffffff;
| |
| border: 1px solid #333333;
| |
| }
| |