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

32 lines
652 B
CSS
Raw Normal View History

2023-01-27 19:23:40 +01:00
/* Dark Mode Styles */
body {
background-color: #333 !important;
color: #fff !important;
2023-01-27 19:23:40 +01:00
}
.dark-card {
background-color: #333 !important;
color: white !important;
2023-01-27 19:23:40 +01:00
}
.jumbotron {
background-color: #222; /* or any other dark color */
color: #fff !important; /* or any other light color */
2023-01-30 21:50:47 +01:00
}
.list-group {
background-color: #222 !important;
color: fff !important;
}
.list-group-item {
background-color: #222 !important;
color: fff !important;
}
#support-section {
background-color: #444 !important;
}
.home-card-icon-colour {
filter: invert(0.2) sepia(2) saturate(50) hue-rotate(190deg);
}