feature/IO-1113-Online-Dark-Mode - Adjust Car SVG Background color in Dark mode

This commit is contained in:
Dave Richer
2025-08-08 12:51:00 -04:00
parent 3b481afa9e
commit c06b4e8af5
2 changed files with 10 additions and 1 deletions

View File

@@ -208,6 +208,7 @@
--today-bg: #4a5e6e; /* Dark mode today background */
--today-text: #ffffff; /* Dark mode today text */
--off-range-bg: #333333; /* Dark mode off-range background */
--svg-background: #FFF; /* Dark mode SVG background */
}
// Global Styles
@@ -403,6 +404,10 @@
// Override react-big-calendar styles for dark mode only
[data-theme="dark"] {
.car-svg {
background-color: var(--svg-background);
}
.rbc-today {
background-color: var(--today-bg);
color: var(--today-text);
@@ -416,3 +421,7 @@
background-color: var(--today-bg);
}
}
//.rbc-time-header-gutter {
// padding: 0;
//}