From a16ffc7ba1035d41a2cb3e68df5b8c6f756f90b1 Mon Sep 17 00:00:00 2001 From: Catalin Zalog Date: Sun, 16 Sep 2018 11:06:53 +0300 Subject: [PATCH] feat: keep contrast on `.table-dark` In case we set `$body-bg` to a dark color, we have to keep table contrast relevant. --- scss/_variables.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/_variables.scss b/scss/_variables.scss index 79169319bf..a8fc432806 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;