We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99301de commit cb0dff0Copy full SHA for cb0dff0
source/_patterns/00-base/_helpers.scss
@@ -7,10 +7,12 @@
7
$rgbBackground: #fdfdfd
8
) {
9
#{$cssProperty}: rgb(
10
- (1 - $alphaValue) * color.red($rgbBackground) + $alphaValue * color.red($hexValue),
+ (1 - $alphaValue) * color.red($rgbBackground) + $alphaValue *
11
+ color.red($hexValue),
12
(1 - $alphaValue) * color.green($rgbBackground) + $alphaValue *
13
color.green($hexValue),
- (1 - $alphaValue) * color.blue($rgbBackground) + $alphaValue * color.blue($hexValue)
14
+ (1 - $alphaValue) * color.blue($rgbBackground) + $alphaValue *
15
+ color.blue($hexValue)
16
);
17
}
18
0 commit comments