mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 15:10:22 +00:00
Initial commit
This commit is contained in:
parent
23dbbd8ea8
commit
eb3873ac3f
1 changed files with 77 additions and 0 deletions
77
app/css/dark.css
Normal file
77
app/css/dark.css
Normal file
|
@ -0,0 +1,77 @@
|
|||
/*
|
||||
Theme Name: Lights Out
|
||||
Author: @billz
|
||||
Author URI: https://github.com/billz
|
||||
Description: A Bootstrap dark mode theme for RaspAP
|
||||
License: GNU General Public License v3.0
|
||||
*/
|
||||
|
||||
@import url('custom.php');
|
||||
|
||||
html[data-bs-theme="dark"] {
|
||||
background-color: var(--bs-dark);
|
||||
color: var(--bs-light);
|
||||
}
|
||||
|
||||
html[data-bs-theme="dark"] body,
|
||||
html[data-bs-theme="dark"] footer,
|
||||
html[data-bs-theme="dark"] .sb-sidenav,
|
||||
html[data-bs-theme="dark"] .sb-topnav,
|
||||
html[data-bs-theme="dark"] .card,
|
||||
html[data-bs-theme="dark"] .card-footer {
|
||||
background-color: var(--bs-dark);
|
||||
}
|
||||
|
||||
html[data-bs-theme="dark"] .card-body,
|
||||
html[data-bs-theme="dark"] .card-footer,
|
||||
html[data-bs-theme="dark"] .info-item-xs {
|
||||
color: var(--bs-secondary);
|
||||
}
|
||||
|
||||
html[data-bs-theme="dark"] .sb-topnav.navbar {
|
||||
background-color: var(--bs-dark) !important;
|
||||
color: var(--bs-light);
|
||||
}
|
||||
|
||||
html[data-bs-theme="dark"] .sb-topnav.navbar,
|
||||
html[data-bs-theme="dark"] .sb-topnav.navbar a {
|
||||
color: var(--bs-light) !important;
|
||||
}
|
||||
|
||||
html[data-bs-theme="dark"] .sb-topnav.navbar {
|
||||
--bs-navbar-bg: var(--bs-dark);
|
||||
}
|
||||
|
||||
html[data-bs-theme="dark"] .sb-topnav.navbar.navbar-light {
|
||||
color: var(--bs-light);
|
||||
}
|
||||
|
||||
html[data-bs-theme="dark"] .card {
|
||||
border-color: var(--bs-secondary);
|
||||
color: var(--bs-light);
|
||||
}
|
||||
|
||||
html[data-bs-theme="dark"] .card-footer {
|
||||
border-color: var(--bs-secondary);
|
||||
}
|
||||
|
||||
html[data-bs-theme="dark"] .nav-tabs {
|
||||
--bs-nav-tabs-link-active-color: var(--bs-light);
|
||||
--bs-nav-tabs-link-active-bg: var(--bs-dark);
|
||||
--bs-nav-tabs-link-active-border-color: var(--bs-secondary) var(--bs-secondary) var(--bs-dark);
|
||||
--bs-nav-tabs-border-color: var(--bs-secondary);
|
||||
--bs-nav-tabs-link-hover-border-color: var(--bs-secondary);
|
||||
}
|
||||
|
||||
html[data-bs-theme="dark"] .btn {
|
||||
color: var(--bs-gray-800);
|
||||
opacity: 75%;
|
||||
}
|
||||
|
||||
html[data-bs-theme="dark"] select,
|
||||
html[data-bs-theme="dark"] .form-control {
|
||||
background-color: var(--bs-dark);
|
||||
border-color: var(--bs-secondary);
|
||||
color: var(--bs-light);
|
||||
}
|
||||
|
Loading…
Reference in a new issue