Skip to content

Instantly share code, notes, and snippets.

View nwaelkens's full-sized avatar

Nathan Waelkens nwaelkens

View GitHub Profile
@nwaelkens
nwaelkens / ral_colours.php
Last active May 3, 2023 08:27 — forked from olimortimer/ral_colours.php
PHP: RAL Colours as RGB
<?php
// Includes text RGB to show text as white or black. This value was calculated using;
// $brightness = sqrt( (R * R * .299) + (G * G * .587) + (B * B * .114) )
// If $brightness was greater than 130, then the text was set to white
$ralColours = array(
'RAL 1000' => array(
'rgb' => '190,189,127',
'name_en' => 'Green Beige',