We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56b221e commit 5981211Copy full SHA for 5981211
webapp/src/Utils/Utils.php
@@ -360,7 +360,7 @@ public static function parseHexColor(string $hex): array
360
return [
361
(int)round(hexdec(substr($hex, 1, $length)) * $fact),
362
(int)round(hexdec(substr($hex, 1 + $length, $length)) * $fact),
363
- (int)round(hexdec(substr($hex, 1 + 2 * $length, $length)) * $fact)
+ (int)round(hexdec(substr($hex, 1 + 2 * $length, $length)) * $fact),
364
(int)round(hexdec(substr($hex, 1 + 3 * $length, $length)) * $fact)
365
];
366
}
0 commit comments