Skip to content

Commit

Permalink
refactor: running prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke committed Nov 18, 2024
1 parent 99301de commit cb0dff0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions source/_patterns/00-base/_helpers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@
$rgbBackground: #fdfdfd
) {
#{$cssProperty}: rgb(
(1 - $alphaValue) * color.red($rgbBackground) + $alphaValue * color.red($hexValue),
(1 - $alphaValue) * color.red($rgbBackground) + $alphaValue *
color.red($hexValue),
(1 - $alphaValue) * color.green($rgbBackground) + $alphaValue *
color.green($hexValue),
(1 - $alphaValue) * color.blue($rgbBackground) + $alphaValue * color.blue($hexValue)
(1 - $alphaValue) * color.blue($rgbBackground) + $alphaValue *
color.blue($hexValue)
);
}

Expand Down

0 comments on commit cb0dff0

Please sign in to comment.