> Some pre-created colors. Colors.red / Colors::red etc. This would be useful in about every chunk of gosu-code I've ever made.
C++ always had Colors::red. I just deprecated it and changed it to Color::RED. The same is true for all combinations of 00 and ff, plus gray for good measure. Ruby version coming with the next commit.
I did *not* add CSS colors though. Whoever wants them can add them. I think in the time you would look up what AliceBlue looks like, you can just add a meaningful constant like INVENTORY_BACKGROUND_COLOR or something. Bonus trivia: If I adapted to the CSS colors, what RGB value would "Color::GREEN" have? I know you didn't ask for it, but at first I thought that would be a cool list of colors to have. Now I think I'll rather keep the interface clean. I am not sure if even the primary colors have any use except for debugging output, I always used fine-tuned RGB colors for everything in "production" :)