Skip to content

Commit

Permalink
#6372: Fix too-dark body color
Browse files Browse the repository at this point in the history
  • Loading branch information
thatmattlove committed May 7, 2021
1 parent 789f0bc commit 4fd7eaf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion netbox/project-static/dist/netbox.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion netbox/project-static/dist/netbox.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions netbox/project-static/netbox.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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)};
Expand All @@ -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)};
Expand Down
3 changes: 3 additions & 0 deletions netbox/project-static/theme-light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit 4fd7eaf

Please sign in to comment.