31 lines
652 B
CSS
31 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);
|
|
}
|
|
|