/* 1. 문서 전체 바탕 색 */
body {
background-color: #000 !important;
color: #fff !important; /* 기본 글씨 색상 */
}
/* 2. 일반 글씨 색상 */
.mw-body {
color: #fff !important;
}
/* 3. 링크된 글씨 색상 */
.mw-body a,
.mw-body a:visited,
.mw-body a:hover {
color: #fff !important;
text-decoration: none;
}
/* 4. 테두리 및 목차 선 색상 */
.mw-body, .toc, .toc ul, .toc li, .toc a {
border-color: #333 !important;
}
/* 5. 목차 상단 배경 색 */
.toc {
background-color: #444 !important;
}
/* 6. 표 스타일 개선 */
.mw-body table {
border: 1px solid #444 !important;
background-color: #222 !important;
color: #fff !important;
}
.mw-body th {
background-color: #333 !important;
border-bottom: 2px solid #555 !important;
}
.mw-body td {
border-bottom: 1px solid #555 !important;
}
/* 7. 버튼 스타일 */
button, .mw-ui-button {
background-color: #555 !important;
color: #fff !important;
border: 1px solid #777 !important;
}
button:hover, .mw-ui-button:hover {
background-color: #777 !important;
}