MediaWiki:Vector.css: Difference between revisions
Appearance
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
Line 12: | Line 12: | ||
} | } | ||
a:visited { | a:visited { | ||
color: # | color: #c9a3ff; /* Softer purple to contrast both dark and light backgrounds */ | ||
} | } | ||
a:hover { | a:hover { | ||
color: # | color: #9bcaff; /* Lighter blue on hover */ | ||
} | } | ||
a:active { | a:active { | ||
Line 26: | Line 26: | ||
} | } | ||
/* Header */ | /* Header - Adjusted to Match Darker Theme */ | ||
.mw-head { | .mw-head { | ||
background-color: # | background-color: #2b2b2b; /* Same as body */ | ||
color: #e0e0e0; /* Ensures readability */ | |||
} | } | ||
Line 34: | Line 35: | ||
#mw-panel { | #mw-panel { | ||
background-color: #3a3a3a; /* Slightly lighter */ | background-color: #3a3a3a; /* Slightly lighter */ | ||
} | |||
/* Search Box Background Fix */ | |||
#p-search input { | |||
background-color: #444; /* Darker input field */ | |||
color: #e0e0e0; | |||
border: 1px solid #555; | |||
} | } |
Revision as of 20:08, 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: #c9a3ff; /* Softer purple to contrast both dark and light backgrounds */ } a:hover { color: #9bcaff; /* 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 - Adjusted to Match Darker Theme */ .mw-head { background-color: #2b2b2b; /* Same as body */ color: #e0e0e0; /* Ensures readability */ } /* Sidebar Navigation */ #mw-panel { background-color: #3a3a3a; /* Slightly lighter */ } /* Search Box Background Fix */ #p-search input { background-color: #444; /* Darker input field */ color: #e0e0e0; border: 1px solid #555; }