looking for a flat shader (no info) with just a color option

Hey … I have no knowledge of shaders and was wondering how to:

create a shader that’s flat with no info other than being able to choose a color

(So, creating a color silhouette of the object it’s applied to.)

I want this shader for an object that’s not affected by any lighting or anything and just changes colors… thanks!

Note too that if you simply put this on a quad, you’ll get a “square of flat color”.

http://www.youtube.com/user/JessyUV#p/c/31F6A116DCCC9F61/1/pCqB-jc-sqU

Shader "Solid Color" {

Properties {
    _Color ("Color", Color) = (1,1,1)
}

SubShader {
    Color [_Color]
    Pass {}
} 

}

Nowadays, you can simply use “Unlit/Color”, that is a preinstalled solid color shader.