1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-01-17 21:28:30 +01:00

fix: Add new variable for input-disabled-bg for better contrasting

This commit is contained in:
Alex Tu 2022-04-09 07:13:03 +00:00
parent 4e30c8a62a
commit 4baddf0a08

View File

@ -61,6 +61,8 @@ $theme-colors: (
$darkmode-bg: $gray-900;
$darkmode-bg-dark: darken($gray-900, 3%);
$darkmode-bg-darker: darken($gray-900, 6%);
$darkmode-bg-darkest: darken($gray-900, 9%);
$color-contrast-dark: $white;
$color-contrast-light: $black;
@ -99,7 +101,7 @@ $table-dark-color: $white;
// Forms
$input-bg: $gray-800;
$input-disabled-bg: $darkmode-bg;
$input-disabled-bg: $darkmode-bg-darkest;
$input-border-color: $darkmode-bg-dark;
$input-color: $body-color;