Stirling-PDF/src/main/resources/static/css/dark-mode.css

44 lines
1.3 KiB
CSS
Raw Normal View History

2023-01-27 19:23:40 +01:00
/* 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;
2023-01-27 19:23:40 +01:00
}
2023-05-20 00:58:54 +02:00
.card {
background-color: rgb(var(--body-background-color)) !important;
border: 1px solid #999;
color: rgb(var(--base-font-color)) !important;
}
2023-01-27 19:23:40 +01:00
.dark-card {
background-color: rgb(var(--body-background-color)) !important;
color: rgb(var(--base-font-color)) !important;
2023-01-27 19:23:40 +01:00
}
.jumbotron {
background-color: #222; /* or any other dark color */
color: rgb(var(--base-font-color)) !important; /* or any other light color */
2023-01-30 21:50:47 +01:00
}
.list-group {
background-color: #222 !important;
color: rgb(var(--base-font-color)) !important;
2023-01-30 21:50:47 +01:00
}
.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;
2023-05-12 17:47:43 +02:00
}
.favorite-icon img {
filter: brightness(0) invert(1) !important;
}