Skip to content

Instantly share code, notes, and snippets.

@inxomnyaa
Created August 27, 2017 19:28
Show Gist options
  • Save inxomnyaa/16b43c45978b41a9ad717144256ec9d8 to your computer and use it in GitHub Desktop.
Save inxomnyaa/16b43c45978b41a9ad717144256ec9d8 to your computer and use it in GitHub Desktop.
Transforms a TextFormat constant to Color for example for coloring armor
$colorconstant = TextFormat::RED;
list($r, $g, $b) = str_split(ltrim(str_replace('>', '', str_replace('<span style=color:#', '', TextFormat::toHTML(colorconstant))), '#'));
$color = new Color(...array_map('hexdec', [$r . $r, $g . $g, $b . $b]));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment