Color.blendLinearDodge()

<static> blendLinearDodge(a, b) → {integer} An alias for blendAdd, it simply sums the values of the two colors. Parameters Name Type Description a integer The source color to blend, in the range 1 to 255. b integer The backdrop color to blend, in the range 1 to 255. Returns integer - The blended color value, in the range 1 to 255. Source code: utils/Color.js (Line 1231)

Color.blendLinearBurn()

<static> blendLinearBurn(a, b) → {integer} An alias for blendSubtract, it simply sums the values of the two colors and subtracts 255. Parameters Name Type Description a integer The source color to blend, in the range 1 to 255. b integer The backdrop color to blend, in the range 1 to 255. Returns integer - The blended color value, in the range 1 to 255. Source code: utils/Color.js (Line 1244)

Color.blendLighten()

<static> blendLighten(a, b) → {integer} Selects the lighter of the backdrop and source colors. Parameters Name Type Description a integer The source color to blend, in the range 1 to 255. b integer The backdrop color to blend, in the range 1 to 255. Returns integer - The blended color value, in the range 1 to 255. Source code: utils/Color.js (Line 1003)

Color.blendHardMix()

<static> blendHardMix(a, b) → {integer} Runs blendVividLight on the source and backdrop colors.If the resulting color is 128 or more, it receives a value of 255; if less than 128, a value of 0.Therefore, all blended pixels have red, green, and blue channel values of either 0 or 255.This changes all pixels to primary additive colors (red, green, or blue), white, or black. Parameters Name Type Description a integer The source color to blend, in the range 1 to 255. b integer The back

Color.blendHardLight()

<static> blendHardLight(a, b) → {integer} Multiplies or screens the colors, depending on the source color value. If the source color is lighter than 0.5, the backdrop is lightened, as if it were screened;this is useful for adding highlights to a scene. If the source color is darker than 0.5, the backdrop is darkened, as if it were multiplied;this is useful for adding shadows to a scene. The degree of lightening or darkening is proportional to the difference between the source color

Color.blendGlow()

<static> blendGlow(a, b) → {integer} Glow blend mode. This mode is a variation of reflect mode with the source and backdrop colors swapped. Parameters Name Type Description a integer The source color to blend, in the range 1 to 255. b integer The backdrop color to blend, in the range 1 to 255. Returns integer - The blended color value, in the range 1 to 255. Source code: utils/Color.js (Line 1331)

Color.blendExclusion()

<static> blendExclusion(a, b) → {integer} Produces an effect similar to that of the Difference mode, but lower in contrast.Painting with white inverts the backdrop color; painting with black produces no change. Parameters Name Type Description a integer The source color to blend, in the range 1 to 255. b integer The backdrop color to blend, in the range 1 to 255. Returns integer - The blended color value, in the range 1 to 255. Source code: utils/Color.js (Line 1127)

Color.blendDifference()

<static> blendDifference(a, b) → {integer} Subtracts the darker of the two constituent colors from the lighter. Painting with white inverts the backdrop color; painting with black produces no change. Parameters Name Type Description a integer The source color to blend, in the range 1 to 255. b integer The backdrop color to blend, in the range 1 to 255. Returns integer - The blended color value, in the range 1 to 255. Source code: utils/Color.js (Line 1084)

Color.blendDarken()

<static> blendDarken(a, b) → {integer} Selects the darker of the backdrop and source colors. Parameters Name Type Description a integer The source color to blend, in the range 1 to 255. b integer The backdrop color to blend, in the range 1 to 255. Returns integer - The blended color value, in the range 1 to 255. Source code: utils/Color.js (Line 1016)

Color.blendColorDodge()

<static> blendColorDodge(a, b) → {integer} Brightens the backdrop color to reflect the source color.Painting with black produces no change. Parameters Name Type Description a integer The source color to blend, in the range 1 to 255. b integer The backdrop color to blend, in the range 1 to 255. Returns integer - The blended color value, in the range 1 to 255. Source code: utils/Color.js (Line 1203)