I can think of a few ways
1. Make your lights red.
2. Use OpenGL fog, colored red.
3. Put a translucent red polygon right in front of your camera, so you're looking through it. This may cause drawing order problems, though, depending on what's in your scene.
4. Render to a buffer, then process the buffer's pixels to redden it (e.g. multiply each pixel RGB value by (1.5, 1, 1) and clamp to 1).