+/* Bootstrap contextual table classes overrides in dark mode */
+
+@include color-mode(dark) {
+ .table-primary {
+ --bs-table-bg: rgb(var(--bs-primary-rgb), .25);
+ }
+ .table-secondary {
+ --bs-table-bg: rgb(var(--bs-secondary-rgb), .25);
+ }
+ .table-success {
+ --bs-table-bg: rgb(var(--bs-success-rgb), .25);
+ }
+ .table-primary, .table-secondary, .table-success {
+ --bs-table-color: initial;
+ border-color: inherit;
+ }
+}
+