We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 356fdbd commit 35f5253Copy full SHA for 35f5253
scss/functions/_color-contrast-variables.scss
@@ -9,7 +9,7 @@
9
10
@each $color in $foregrounds {
11
$contrast-ratio: contrast-ratio($background, $color);
12
- @if $contrast-ratio > $min-contrast-ratio {
+ @if $contrast-ratio >= $min-contrast-ratio {
13
@return $color;
14
} @else if $contrast-ratio > $max-ratio {
15
$max-ratio: $contrast-ratio;
scss/functions/_color-contrast.scss
@@ -12,7 +12,7 @@
16
17
18
0 commit comments