Skip to content

Instantly share code, notes, and snippets.

@Octagon-simon
Created October 16, 2021 15:22
Show Gist options
  • Select an option

  • Save Octagon-simon/cdc418cfddbe9e73184bce22e2c928ba to your computer and use it in GitHub Desktop.

Select an option

Save Octagon-simon/cdc418cfddbe9e73184bce22e2c928ba to your computer and use it in GitHub Desktop.
create array of colors
<?php
//create a color hex
$a=array(
"red"=>[255, 0, 0],
"green"=>[0, 155, 6],
"blue"=>[0, 0, 255],
"black"=>[0,0,0]
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment