Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 955 Bytes

README.md

File metadata and controls

32 lines (19 loc) · 955 Bytes

ColorMatcher

Build Status

ColorMatcher it's a gem that given a color, returns the nearest one from a collection.

Usage

You should read the tests as they are the most updated documentation.

There's only one method:

  ColorMatcher.closest_color("000000", ["000000", "ffffff"]) # => 000000

How do we use it at Chicisimo

We use the color matcher at Chicisimo to match our looks with the color picked using the slider in our discover section:

Algorithm

We are using the Euclidean distance algorithm as described here.

License

ColorMatcher is open-sourced software licensed under the MIT license.