Bläddra i källkod

Update blend-modes.md with Screen definition resolve #204 (#217)

* Update blend-modes.md

Adding blend mode "Screen" definition. Please review.

* Update blend-modes.md

Adding blend mode "Screen" definition. Please review.

* Update blend-modes.md

small indentation fix

* Update blend-modes.md

Removed double wording "the the" in both Multiply and Screen definitions.
Agustin 3 år sedan
förälder
incheckning
79cb351ba6
1 ändrade filer med 4 tillägg och 1 borttagningar
  1. 4 1
      docs/en/shared/blend-modes.md

+ 4 - 1
docs/en/shared/blend-modes.md

@@ -7,4 +7,7 @@ Add
 : Brighten the background with the color values of the corresponding pixels of the component: `src.rgb + dst.rgb`
 
 Multiply
-: Darken the background with values of the the corresponding pixels of the component: `src.rgb * dst.rgb`
+: Darken the background with values of the corresponding pixels of the component: `src.rgb * dst.rgb`
+
+Screen
+: Opposite of Multiply. Brighten background and values of the corresponding pixels of the component: `src.rgb - dst.rgb * dst.rgb`