aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCatalin Zalog <[email protected]>2018-09-16 11:06:53 +0300
committerXhmikosR <[email protected]>2018-10-19 13:01:38 +0300
commita16ffc7ba1035d41a2cb3e68df5b8c6f756f90b1 (patch)
treead06768bc624ae5c3eaf4440f410c976a64c3417
parent1231e1d6bc2db3ff40db5039d13fa30adb6e2169 (diff)
downloadbootstrap-a16ffc7ba1035d41a2cb3e68df5b8c6f756f90b1.tar.xz
bootstrap-a16ffc7ba1035d41a2cb3e68df5b8c6f756f90b1.zip
feat: keep contrast on `.table-dark`
In case we set `$body-bg` to a dark color, we have to keep table contrast relevant.
-rw-r--r--scss/_variables.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_variables.scss b/scss/_variables.scss
index 79169319b..a8fc43280 100644
--- a/scss/_variables.scss
+++ b/scss/_variables.scss
@@ -343,7 +343,7 @@ $table-dark-bg: $gray-900 !default;
$table-dark-accent-bg: rgba($white, .05) !default;
$table-dark-hover-bg: rgba($white, .075) !default;
$table-dark-border-color: lighten($gray-900, 7.5%) !default;
-$table-dark-color: $body-bg !default;
+$table-dark-color: $white !default;
$table-striped-order: odd !default;