Here's a list of algorithms for sorting colors by hue, saturation, and value:
// Example code for Hue Sorting function hueSort(arr) { arr.sort(function(a, b) { return a.hue - b.hue; }); }