mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-01-23 00:06:08 +01:00
44 lines
1.3 KiB
CSS
44 lines
1.3 KiB
CSS
/* Dark Mode Styles */
|
|
body {
|
|
--body-background-color: 51, 51, 51;
|
|
--base-font-color: 255, 255, 255;
|
|
background-color: rgb(var(--body-background-color)) !important;
|
|
color: rgb(var(--base-font-color)) !important;
|
|
}
|
|
.card {
|
|
background-color: rgb(var(--body-background-color)) !important;
|
|
border: 1px solid #999;
|
|
color: rgb(var(--base-font-color)) !important;
|
|
}
|
|
|
|
.dark-card {
|
|
background-color: rgb(var(--body-background-color)) !important;
|
|
color: rgb(var(--base-font-color)) !important;
|
|
}
|
|
.jumbotron {
|
|
background-color: #222; /* or any other dark color */
|
|
color: rgb(var(--base-font-color)) !important; /* or any other light color */
|
|
}
|
|
|
|
.list-group {
|
|
background-color: #222 !important;
|
|
color: rgb(var(--base-font-color)) !important;
|
|
}
|
|
.list-group-item {
|
|
background-color: #222 !important;
|
|
color: rgb(var(--base-font-color)) !important;
|
|
}
|
|
#support-section {
|
|
background-color: #444 !important;
|
|
}
|
|
|
|
#pages-container-wrapper {
|
|
--background-color: rgba(255, 255, 255, 0.046) !important;
|
|
--scroll-bar-color: #4c4c4c !important;
|
|
--scroll-bar-thumb: #d3d3d3 !important;
|
|
--scroll-bar-thumb-hover: rgb(var(--base-font-color)) !important;
|
|
}
|
|
|
|
.favorite-icon img {
|
|
filter: brightness(0) invert(1) !important;
|
|
} |