Convert to HWB in PHP
Any color converts with to(); the result is HWB, an object with its own channels.
<?php
$color = Color::parse('#3b82f6')->to('hwb');
$color->getChannels();
// ['h' => 217.2193, 'w' => 0.2314, 'b' => 0.0353]
$color = Color::parse('#3b82f6')->to('hwb');
$color->getChannels();
// ['h' => 217.2193, 'w' => 0.2314, 'b' => 0.0353]