ui: Update scss to avoid color aberation on list-group

This commit is contained in:
nemunaire 2024-03-16 10:04:08 +01:00
parent adb0e36dd4
commit 5edaf2cf3d

View File

@ -1,25 +1,22 @@
// Your variable overrides can go here, e.g.: @import "bootswatch/dist/slate/_variables";
// $h1-font-size: 3rem;
$white: white;
$gray-500: #999;
$gray-900: #272b30;
$body-bg: $white;
$body-bg: $gray-100;
$old-body-bg: $gray-900; $old-body-bg: $gray-900;
$dropdown-link-hover-bg: $old-body-bg; $dropdown-link-hover-bg: $old-body-bg;
$card-bg: lighten($old-body-bg, 5%); $card-bg: lighten($old-body-bg, 5%);
$popover-bg: lighten($old-body-bg, 5%); $popover-bg: lighten($old-body-bg, 5%);
$toast-background-color: lighten($old-body-bg, 5%); $toast-background-color: lighten($old-body-bg, 5%);
$modal-content-bg: lighten($old-body-bg, 5%); $modal-content-bg: lighten($old-body-bg, 5%);
$table-bg: lighten($old-body-bg, 5%);
$list-group-bg: lighten($old-body-bg, 5%); $list-group-bg: lighten($old-body-bg, 5%);
$list-group-hover-bg: lighten($old-body-bg, 10%); $list-group-hover-bg: lighten($old-body-bg, 10%);
$list-group-action-hover-color: $gray-100;
$list-group-border-color: rgba($gray-500, .6); $list-group-border-color: rgba($gray-500, .6);
$enable-print-styles: false; $enable-print-styles: false;
@import "bootswatch/dist/slate/_variables";
@import "bootstrap/scss/bootstrap"; @import "bootstrap/scss/bootstrap";
@import "bootswatch/dist/slate/_bootswatch"; @import "bootswatch/dist/slate/_bootswatch";