diff --git a/src/wp-includes/class-wp-duotone.php b/src/wp-includes/class-wp-duotone.php
index 0260cab4f3..a22745d895 100644
|
a
|
b
|
class WP_Duotone { |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | /** |
| 218 | | * Parses any valid Hex3, Hex4, Hex6 or Hex8 string and converts it to an RGBA object |
| | 218 | * Parses any valid Hex3, Hex4, Hex6 or Hex8 string and converts it to an RGBA object. |
| 219 | 219 | * |
| 220 | 220 | * Direct port of colord's parseHex function. |
| 221 | 221 | * |
| … |
… |
class WP_Duotone { |
| 286 | 286 | } |
| 287 | 287 | |
| 288 | 288 | /** |
| 289 | | * Parses a valid RGB[A] CSS color function/string |
| | 289 | * Parses a valid RGB[A] CSS color function/string. |
| 290 | 290 | * |
| 291 | 291 | * Direct port of colord's parseRgbaString function. |
| 292 | 292 | * |