mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-05-14 18:25:54 +00:00
32 lines
652 B
CSS
32 lines
652 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;
|
|
}
|
|
|
|
.home-card-icon-colour {
|
|
filter: invert(0.2) sepia(2) saturate(50) hue-rotate(190deg);
|
|
}
|
|
|