2023-01-27 19:23:40 +01:00
|
|
|
/* Dark Mode Styles */
|
|
|
|
body {
|
2023-05-08 03:23:45 +02:00
|
|
|
--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 {
|
2023-05-08 03:23:45 +02:00
|
|
|
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 */
|
2023-05-08 03:23:45 +02:00
|
|
|
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;
|
2023-05-08 03:23:45 +02:00
|
|
|
color: rgb(var(--base-font-color)) !important;
|
2023-01-30 21:50:47 +01:00
|
|
|
}
|
|
|
|
.list-group-item {
|
|
|
|
background-color: #222 !important;
|
2023-05-08 03:23:45 +02:00
|
|
|
color: rgb(var(--base-font-color)) !important;
|
2023-02-24 23:47:26 +01:00
|
|
|
}
|
|
|
|
#support-section {
|
|
|
|
background-color: #444 !important;
|
2023-04-15 20:55:55 +02:00
|
|
|
}
|
|
|
|
|
2023-04-22 19:26:42 +02:00
|
|
|
#pages-container-wrapper {
|
2023-04-22 14:08:47 +02:00
|
|
|
--background-color: rgba(255, 255, 255, 0.046) !important;
|
|
|
|
--scroll-bar-color: #4c4c4c !important;
|
|
|
|
--scroll-bar-thumb: #d3d3d3 !important;
|
2023-05-08 03:23:45 +02:00
|
|
|
--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;
|
2023-04-22 14:08:47 +02:00
|
|
|
}
|