Step 1: The Art of Dithering

Dithering is the art of making a mess, but on purpose. It's like the opposite of tidying up. Instead of putting things in order, you're making a big ol' mess and calling it "art."

Our method involves taking a bunch of colors and mixing them together in a way that's so bad, it's good. It's like a culinary experiment gone wrong, but with more pixels.

Here's a code example of our dithering algorithm:

	// Dithering function (do not try this at home)
	function dither($colors) {
		$result = array();
		foreach ($colors as $color) {
			$result[] = $color;
			$result[] = rand($color);
		}
		return implode($result, ', ');
	}
	
Next Step: Color Hacking 101 Back to Color Hacking Index Our Methods Our Story