MediaWiki:Vector.css: Difference between revisions
Appearance
No edit summary |
No edit summary Tag: Reverted |
||
Line 1: | Line 1: | ||
/* All CSS here will be loaded for users of the Vector skin */ | /* All CSS here will be loaded for users of the Vector skin */ | ||
/* Softer Dark Mode for Vector Skin */ | |||
body { | |||
background-color: #2b2b2b; /* Medium-dark gray */ | |||
color: #e0e0e0; /* Light gray text */ | |||
} | |||
/* Links */ | |||
a { | |||
color: #58a6ff; /* Bright blue for normal links */ | |||
} | |||
a:visited { | |||
color: #a182ff; /* Light purple for visited links */ | |||
} | |||
a:hover { | |||
color: #82cfff; /* Lighter blue on hover */ | |||
} | |||
a:active { | |||
color: #ffcc66; /* Orange for active/clicked links */ | |||
} | |||
/* Main Wiki Content Area */ | |||
.mw-body { | |||
background-color: #333; /* Slightly lighter than body */ | |||
} | |||
/* Header */ | |||
.mw-head { | |||
background-color: #3a3a3a; /* Medium gray */ | |||
} | |||
/* Sidebar Navigation */ | |||
#mw-panel { | |||
background-color: #3a3a3a; /* Slightly lighter */ | |||
} |
Revision as of 20:05, 26 February 2025
/* All CSS here will be loaded for users of the Vector skin */ /* Softer Dark Mode for Vector Skin */ body { background-color: #2b2b2b; /* Medium-dark gray */ color: #e0e0e0; /* Light gray text */ } /* Links */ a { color: #58a6ff; /* Bright blue for normal links */ } a:visited { color: #a182ff; /* Light purple for visited links */ } a:hover { color: #82cfff; /* Lighter blue on hover */ } a:active { color: #ffcc66; /* Orange for active/clicked links */ } /* Main Wiki Content Area */ .mw-body { background-color: #333; /* Slightly lighter than body */ } /* Header */ .mw-head { background-color: #3a3a3a; /* Medium gray */ } /* Sidebar Navigation */ #mw-panel { background-color: #3a3a3a; /* Slightly lighter */ }