34 lines
612 B
CSS
34 lines
612 B
CSS
body.dark-mode {
|
|
color: #d8d8d8;
|
|
background-color: #222222;
|
|
}
|
|
|
|
body.dark-mode .jumbotron {
|
|
background-color: #404142;
|
|
}
|
|
|
|
body.dark-mode .list-display {
|
|
background-color: #404142;
|
|
}
|
|
|
|
body.dark-mode .card {
|
|
background-color: #3d3d3d !important;
|
|
}
|
|
|
|
body.dark-mode .text-muted {
|
|
color: #979797 !important;
|
|
}
|
|
|
|
body.dark-mode .footer {
|
|
background-color: #343a40;
|
|
}
|
|
|
|
body.dark-mode .title-button:link,
|
|
body.dark-mode .title-button:visited {
|
|
color: white !important;
|
|
}
|
|
|
|
body.dark-mode .title-button:hover,
|
|
body.dark-mode .title-button:active {
|
|
color: rgb(182, 182, 182) !important;
|
|
}
|