00001 #ifndef _FV_COLORS_H_
00002 #define _FV_COLORS_H_
00003
00004
00005 static const float green[] = {0.0f, 0.5f, 0.0f ,1.0f};
00006 static const float blue[] = {0.3f, 0.3f, 0.8f, 1.0f};
00007 static const float white[] = {1.0f, 1.0f, 1.0f, 1.0f};
00008 static const float black[] = {0.0f, 0.0f, 0.0f, 1.0f};
00009 static const float red[] = {1.0f, 0.3f, 0.3f, 1.0f};
00010 static const float yellow[] = {1.0f, 1.0f, 0.2f, 1.0f};
00011
00012 #endif
00013