Sorting colors in CSS
TLDR; Sorting colors in CSS is hard. I’ve found a method to make it look pretty decent (highly opinionated): Color Sorter repo on Github
One of the goals that I’ve had since the inception of Project Wallace is to show which colors are present in your CSS. Ever since the beginning the most feedback has been around the color analysis. People seem to enjoy a list of colors ¯_(ツ)_/¯. One thing that bothered me however was that it was hard to visually grep how colors were related so I decided to start sorting them.
The solution
My knowledge of color theory is limited to the basics of the color wheel, so I’m using this as my starting point. I also already know that I want to make a clear difference between black-grey-white values and saturated colors. Thanks to TinyColor every color can be converted to an HSL value, so I can use the hue, saturation and lightness properties of each color. So, here we go:
- Sort the colors by hue (red/yellow/green/blue/purple (0-360) degrees on the color wheel)
- If the hue of two colors is the same, order them by saturation
- Take every color in the grey spectrum (meaning that the saturation equals 0), and move that to the end of our color list
- Order the grey-ish colors by their alpha channel
- If the alpha channel is the same for both colors, sort them by lightness
Take a look at the examples in the repo to see the results for several well-known sites.
The bad parts
- It is pretty much impossible to properly handle the differences in the alpha-channel (opacity). A color that is 90% transparent will look totally different than that same color with 0% transparency.
- This sorting is based on my own taste and has no solid base in color theory. It just needs to look good for me.
Popular posts
Making Analyze CSS render 6 times faster
A deep-dive in how the Analyze CSS page renders 6 times faster by applying 2 basic principles.
CSS complexity: it's complicated
There's lots of places in CSS to have complexity, but we tend to focus on selectors most of the time. Let's have a look at other places too.