uiharu/src/Colour.php

9 lines
185 B
PHP

<?php
namespace Uiharu;
final class Colour {
public static function toHexString(int $colour): string {
return '#' . str_pad(dechex($colour), 6, '0', STR_PAD_LEFT);
}
}