편집 요약 없음 |
편집 요약 없음 태그: 수동 되돌리기 |
||
1번째 줄: | 1번째 줄: | ||
/* 문서 전체 | /* 1. 문서 전체 바탕 색 */ | ||
body { | |||
background-color: #000 !important; | background-color: #000 !important; | ||
color: #fff !important; /* 기본 글씨 색상 */ | color: #fff !important; /* 기본 글씨 색상 (2번과 같은 색) */ | ||
} | } | ||
/* | /* 2. 일반 글씨 색상 */ | ||
.mw- | .mw-body { | ||
color: #fff !important; | |||
} | } | ||
/* | /* 3. 링크된 글씨 색상 */ | ||
.mw- | .mw-body a { | ||
color: #fff !important; | |||
} | } | ||
.mw-body a:visited { | |||
.mw- | color: #fff !important; | ||
} | } | ||
.mw-body a:hover { | |||
color: #fff !important; | |||
.mw- | |||
} | } | ||
/* 목차 | /* 4. 테두리 및 목차 선 색상 */ | ||
.mw- | .mw-body, .toc, .toc ul, .toc li, .toc a { | ||
. | border-color: #333 !important; | ||
color: # | |||
} | } | ||
/* 목차 | /* 5. 목차 상단 배경 색 */ | ||
. | .toc { | ||
color: # | background-color: #444 !important; | ||
} | } |
2025년 3월 22일 (토) 21:10 기준 최신판
/* 1. 문서 전체 바탕 색 */
body {
background-color: #000 !important;
color: #fff !important; /* 기본 글씨 색상 (2번과 같은 색) */
}
/* 2. 일반 글씨 색상 */
.mw-body {
color: #fff !important;
}
/* 3. 링크된 글씨 색상 */
.mw-body a {
color: #fff !important;
}
.mw-body a:visited {
color: #fff !important;
}
.mw-body a:hover {
color: #fff !important;
}
/* 4. 테두리 및 목차 선 색상 */
.mw-body, .toc, .toc ul, .toc li, .toc a {
border-color: #333 !important;
}
/* 5. 목차 상단 배경 색 */
.toc {
background-color: #444 !important;
}