A little while ago we started working on a simple puzzle game, with just about the simplest goal I can think of -- drawing a single line. You're presented with a grid of tiles, and can start drawing a line from any point on the grid. Any tiles you pass over with your line flip color, and your goal is to turn all the black tiles white with a single unbroken line.
There are a couple of wrinkles to the formula. Grey tiles don't change color, so you can optionally pass over them. You can also overlap the line, causing the underlying tile to flip each time: white becomes black becomes white again.