mElite  1.0
An Elite clone based on TextElite by Jan-Philipp Kappmeier and Melanie Schmidt.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
ColorConstants.h
Go to the documentation of this file.
1 
7 #pragma once
8 
9 //#include <windows.h> // Windows header. Needs to be included before glut, otherwise we get errors due to wrong definitions
10 #include <GL/glut.h>
11 
12 static const GLfloat colorWhite[] = { 1.00f, 1.00f, 1.00f, 1.0f };
13 static const GLfloat colorYellow[] = { 1.00f, 1.00f, 0.00f, 1.0f };
14 static const GLfloat colorDarkYellow[] = { 1.00f, 210.0/255.0f, 0.0f, 1.0f };
15 static const GLfloat colorOrange[] = {242.0/255.0f, 166.0/255.0f, 0.0f, 1.0f };
16 static const GLfloat colorRed[] = { 1.00f, 0.00f, 0.00f, 1.0f };
17 static const GLfloat colorDarkRed[] = { 0.60f, 0.00f, 0.00f, 1.0f };
18 static const GLfloat colorPurple[] = { 1.00f, 0.00f, 1.00f, 1.0f };
19 static const GLfloat colorLightBlue[] = { 0.00f, 97.0/255.0f,1.0f, 1.0f };
20 static const GLfloat colorBlue[] = { 0.00f, 0.00f, 1.00f, 1.0f };
21 static const GLfloat colorDarkblue[] = { 0.00f, 0.00f, 0.33f, 1.0f };
22 static const GLfloat colorGreen[] = { 0.00f, 1.00f, 0.00f, 1.0f };
23 static const GLfloat colorDarkGreen[] = { 0.00f, 0.25f, 0.00f, 1.0f };
24 static const GLfloat colorDarkGreen2[] = { 0.00f, 0.50f, 0.00f, 1.0f };
25 static const GLfloat colorDarkGrey[] = { 0.33f, 0.33f, 0.33f, 1.0f };
26 static const GLfloat colorGrey[] = { 0.50f, 0.50f, 0.50f, 1.0f };
27 static const GLfloat colorLightGrey[] = { 0.66f, 0.66f, 0.66f, 1.0f };
28 static const GLfloat colorBlack[] = { 0.00f, 0.00f, 0.00f, 1.0f };