-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathGUIColors.h
More file actions
34 lines (21 loc) · 771 Bytes
/
GUIColors.h
File metadata and controls
34 lines (21 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// GUIColors.h
// MultiComputer Tester
//
// Created by Nathan Daly on 7/29/13.
// Copyright (c) 2013 Lions Entertainment. All rights reserved.
//
#ifndef MultiComputer_Tester_GUIColors_h
#define MultiComputer_Tester_GUIColors_h
#include "Compatibility.h"
namespace GUI {
const SDL_Color black_color_c = { 0, 0, 0, 0 };
const SDL_Color white_color_c = { 0xff, 0xff, 0xff, 0 };
const SDL_Color gray_color_c = { 0x88, 0x88, 0x88, 0 };
const SDL_Color light_gray_color_c = { 0xbb, 0xbb, 0xbb, 0 };
const SDL_Color dark_gray_color_c = { 0x44, 0x44, 0x44, 0 };
const SDL_Color red_color_c = { 0xff, 0, 0, 0 };
const SDL_Color green_color_c = { 0, 0xff, 0, 0 };
const SDL_Color blue_color_c = { 0, 0, 0xff, 0 };
}
#endif