From: Patrick H. Lauke Date: Tue, 27 Dec 2022 14:13:38 +0000 (+0000) Subject: Update colour contrast formula with new constant from WCAG 2.2 (#37731) X-Git-Tag: v5.3.0-alpha2~220 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=eb4819474de3d1dd3bc1a3d6df052fc9c35a9b2b;p=thirdparty%2Fbootstrap.git Update colour contrast formula with new constant from WCAG 2.2 (#37731) See https://github.com/w3c/wcag/pull/1780 Closes #37022 --- diff --git a/scss/_functions.scss b/scss/_functions.scss index 26c953bae2..90296586b3 100644 --- a/scss/_functions.scss +++ b/scss/_functions.scss @@ -188,7 +188,7 @@ $_luminance-list: .0008 .001 .0011 .0013 .0015 .0017 .002 .0022 .0025 .0027 .003 ); @each $name, $value in $rgb { - $value: if(divide($value, 255) < .03928, divide(divide($value, 255), 12.92), nth($_luminance-list, $value + 1)); + $value: if(divide($value, 255) < .04045, divide(divide($value, 255), 12.92), nth($_luminance-list, $value + 1)); $rgb: map-merge($rgb, ($name: $value)); }