Dies ist eine alte Version des Dokuments!
/* Greift nur, wenn das System des Nutzers auf „Dunkel“ eingestellt ist */ @media (prefers-color-scheme: dark) {
/* Hintergrund des gesamten Gehäuses und Textfarbe */
body.default, body.default .page {
background-color: #1c1e22 !important;
color: #c8c8c8 !important;
}
/* Die Navigationsleiste oben */
body.default .navbar-default {
background-color: #2c2f33 !important;
border-color: #4e5d6c !important;
}
body.default .navbar-default .navbar-nav > li > a {
color: #ffffff !important;
}
/* Seitenleisten (Sidebars) und Inhalts-Boxen */
body.default .sidebar, body.default .well {
background-color: #272b30 !important;
border-color: #4e5d6c !important;
color: #ffffff !important;
}
/* Wiki-Inhaltsbereich (Überschriften und Links) */
body.default h1, body.default h2, body.default h3, body.default h4 {
color: #ffffff !important;
border-bottom-color: #4e5d6c !important;
}
body.default a {
color: #337ab7 !important; /* Standard-Blau, gut lesbar */
}
body.default a:hover {
color: #23527c !important;
}
/* Code-Blöcke und Textfelder */
body.default pre, body.default code {
background-color: #272b30 !important;
color: #00ff66 !important; /* Klassisches Terminal-Grün */
border-color: #4e5d6c !important;
}
/* Der Editor (Textarea beim Bearbeiten) */
body.default textarea.edit {
background-color: #272b30 !important;
color: #ffffff !important;
border-color: #4e5d6c !important;
}
}