Files
Stirling-PDF/src/main/resources/static/dark-mode.css
Anthony Stirling b078905889 Add files via upload
2023-01-27 18:23:40 +00:00

14 lines
275 B
CSS

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