greghunt / ColoredWords

PHP utility to convert colors to their closest CSS color name.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ColoredWords

PHP utility to convert colors to their closest CSS color name.

Usage

$word = "Blue-pastel";
$color = new ColoredWords( $word );

echo $color->convert()->name();

Results in lightblue

View the demo

API

  • get gets the resulting matches.
  • exactMatch matches exact names.
  • match loosely matches names.
  • sortByRelevance adds a score to matches and sorts the array.
  • convert sets the best match by relevance.
  • name gets the converted name;
  • hex gets the hex code of the converted name.

About

PHP utility to convert colors to their closest CSS color name.


Languages

Language:PHP 100.0%