static function hexComplementary($hex)
 {
     $rgb = Toolkit::hex2rgb($hex);
     return Toolkit::rgb2hex(Toolkit::rgbComplementary($rgb));
 }