For some reason, the color isn't applying to the object. Here's my fragment shader code. There's probably something obvious wrong with it that i'm not seeing.
#version 330 core
out vec3 Color;
uniform int InColor;
void main()
{
Color = vec3(float(127 / 255), 0, 0);
}