From 77e0fa5ea50a37e41a37acb7154075b71993ffdd Mon Sep 17 00:00:00 2001 From: bigcupcoffee <24373206+bigcupcoffee@users.noreply.github.com> Date: Mon, 13 Apr 2026 00:38:45 +0300 Subject: [PATCH 1/2] mixBlendMode plus-lighter --- docs/view-style-props.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/view-style-props.md b/docs/view-style-props.md index b22e32458ec..495fb68a57b 100644 --- a/docs/view-style-props.md +++ b/docs/view-style-props.md @@ -417,10 +417,11 @@ For more granular control over what should be blending together see [isolation]( - `saturation`: Creates a color with the saturation of the source color and the hue and luminosity of the backdrop color. - `color`: Creates a color with the hue and saturation of the source color and the luminosity of the backdrop color. This preserves the gray levels of the backdrop and is useful for coloring monochrome images or tinting color images. - `luminosity`: Creates a color with the luminosity of the source color and the hue and saturation of the backdrop color. This produces an inverse effect to that of the Color mode. +- `plus-lighter`: Adds the source and destination color channels, clamping each at maximum value. | Type | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| enum(`'normal'`, `'multiply'`, `'screen'`, `'overlay'`, `'darken'`, `'lighten'`, `'color-dodge'`, `'color-burn'`, `'hard-light'`, `'soft-light'`, `'difference'`, `'exclusion'`, `'hue'`, `'saturation'`, `'color'`, `'luminosity'`) | +| enum(`'normal'`, `'multiply'`, `'screen'`, `'overlay'`, `'darken'`, `'lighten'`, `'color-dodge'`, `'color-burn'`, `'hard-light'`, `'soft-light'`, `'difference'`, `'exclusion'`, `'hue'`, `'saturation'`, `'color'`, `'luminosity'`, `'plus-lighter'`) | --- From cd4cc812e111af242feb6315ee4f9aa1d2aaebb5 Mon Sep 17 00:00:00 2001 From: bigcupcoffee <24373206+bigcupcoffee@users.noreply.github.com> Date: Mon, 13 Apr 2026 00:45:50 +0300 Subject: [PATCH 2/2] Fix formatting --- docs/view-style-props.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/view-style-props.md b/docs/view-style-props.md index 495fb68a57b..0028a0d9d1d 100644 --- a/docs/view-style-props.md +++ b/docs/view-style-props.md @@ -419,8 +419,8 @@ For more granular control over what should be blending together see [isolation]( - `luminosity`: Creates a color with the luminosity of the source color and the hue and saturation of the backdrop color. This produces an inverse effect to that of the Color mode. - `plus-lighter`: Adds the source and destination color channels, clamping each at maximum value. -| Type | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| Type | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | enum(`'normal'`, `'multiply'`, `'screen'`, `'overlay'`, `'darken'`, `'lighten'`, `'color-dodge'`, `'color-burn'`, `'hard-light'`, `'soft-light'`, `'difference'`, `'exclusion'`, `'hue'`, `'saturation'`, `'color'`, `'luminosity'`, `'plus-lighter'`) | ---