@@ -64,23 +64,23 @@ These blend modes mostly work as intended, but have issues when it comes to deal
64
64
For now, this mode performs simple numeric addition, the same as the SVG 1.2 "plus" mode.
65
65
* ![ comparison of result versus intended for add blend mode] ( http://phrogz.net/tmp/context-blender_add.png )
66
66
67
- * ` lighten `
67
+ * ` lighten ` (or ` lighter ` ) - the result is _ slightly _ too dark when the opacity falls and incorrectly 'favors' a higher-opacity source.
68
68
* ![ comparison of result versus intended for lighten blend mode] ( http://phrogz.net/tmp/context-blender_lighten.png )
69
69
70
- * ` darken `
70
+ * ` darken ` (or ` darker ` ) - the result is too dark when combining low-opacity regions, and does not properly 'favor' the higher-opacity source.
71
71
* ![ comparison of result versus intended for darken blend mode] ( http://phrogz.net/tmp/context-blender_darken.png )
72
72
73
73
* ` overlay ` - this is only correct where both the over and under images are 100% opaque; the lower the alpha
74
- of either/both images, the more the colors get high contrast.
74
+ of either/both images, the more the colors get clamped, resulting in high contrast.
75
75
* ![ comparison of result versus intended for add blend mode] ( http://phrogz.net/tmp/context-blender_overlay.png )
76
76
77
- * ` hardlight ` - this is the opposite of "overlay" and same caveats apply
77
+ * ` hardlight ` - this is the opposite of "overlay" and experiences similar problems when either image is not fully opaque.
78
78
* ![ comparison of result versus intended for hard light blend mode] ( http://phrogz.net/tmp/context-blender_hardlight.png )
79
79
80
- * ` colordodge ` (or ` dodge ` )
80
+ * ` colordodge ` (or ` dodge ` ) - works correctly only under 100% opacity
81
81
* ![ comparison of result versus intended for dodge blend mode] ( http://phrogz.net/tmp/context-blender_dodge.png )
82
82
83
- * ` colorburn ` (or ` burn ` )
83
+ * ` colorburn ` (or ` burn ` ) - works correctly only under 100% opacity
84
84
* ![ comparison of result versus intended for burn blend mode] ( http://phrogz.net/tmp/context-blender_burn.png )
85
85
86
86
## Requirements/Browser Support
0 commit comments