Files
Stirling-PDF/src/main/resources/static/css/dark-mode.css
2023-04-22 00:08:36 +01:00

30 lines
562 B
CSS

/* Dark Mode Styles */
body {
background-color: #333 !important;
color: #fff !important;
}
.dark-card {
background-color: #333 !important;
color: white !important;
}
.jumbotron {
background-color: #222; /* or any other dark color */
color: #fff !important; /* or any other light color */
}
.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;
}