#6372: Fix too-dark body color

This commit is contained in:
checktheroads 2021-05-07 13:25:01 -07:00
parent 789f0bc8ff
commit 4fd7eaf8e0
4 changed files with 6 additions and 3 deletions

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -11,7 +11,7 @@
--nbx-sidebar-title-color: #{$text-muted};
--nbx-breadcrumb-bg: #{$light};
--nbx-body-bg: #{$white};
--nbx-body-color: #{$black};
--nbx-body-color: #{$gray-800};
--nbx-pre-bg: #{$gray-100};
--nbx-pre-border-color: #{$gray-600};
--nbx-change-added: #{rgba($green, 0.4)};
@ -32,7 +32,7 @@
--nbx-sidebar-title-color: #{$gray-300};
--nbx-breadcrumb-bg: #{$gray-800};
--nbx-body-bg: #{$gray-900};
--nbx-body-color: #{$white};
--nbx-body-color: #{$gray-50};
--nbx-pre-bg: #{$gray-700};
--nbx-pre-border-color: #{$gray-600};
--nbx-change-added: #{rgba($green-300, 0.4)};

View File

@ -21,3 +21,6 @@ $accordion-button-bg: $accordion-bg;
$breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='currentColor'/%3E%3C/svg%3E");
$code-color: $gray-900;
$list-group-color: $gray-700;
$list-group-disabled-color: $gray-500;