-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefaultColorTable.h
More file actions
25 lines (22 loc) · 1.23 KB
/
DefaultColorTable.h
File metadata and controls
25 lines (22 loc) · 1.23 KB
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
#ifndef PIZZA_DEFAULT_COLOR_TABLE
#define PIZZA_DEFAULT_COLOR_TABLE
#include "Color.h"
// Default Pizza File Format 6bit color table
const Color DEFAULT_COLOR_TABLE[64] = {
{0, 0, 0}, {0, 0, 85}, {0, 0, 170}, {0, 0, 255},
{0, 85, 0}, {0, 85, 85}, {0, 85, 170}, {0, 85, 255},
{0, 170, 0}, {0, 170, 85}, {0, 170, 170}, {0, 170, 255},
{0, 255, 0}, {0, 255, 85}, {0, 255, 170}, {0, 255, 255},
{85, 0, 0}, {85, 0, 85}, {85, 0, 170}, {85, 0, 255},
{85, 85, 0}, {85, 85, 85}, {85, 85, 170}, {85, 85, 255},
{85, 170, 0}, {85, 170, 85}, {85, 170, 170}, {85, 170, 255},
{85, 255, 0}, {85, 255, 85}, {85, 255, 170}, {85, 255, 255},
{170, 0, 0}, {170, 0, 85}, {170, 0, 170}, {170, 0, 255},
{170, 85, 0}, {170, 85, 85}, {170, 85, 170}, {170, 85, 255},
{170, 170, 0}, {170, 170, 85}, {170, 170, 170}, {170, 170, 255},
{170, 255, 0}, {170, 255, 85}, {170, 255, 170}, {170, 255, 255},
{255, 0, 0}, {255, 0, 85}, {255, 0, 170}, {255, 0, 255},
{255, 85, 0}, {255, 85, 85}, {255, 85, 170}, {255, 85, 255},
{255, 170, 0}, {255, 170, 85}, {255, 170, 170}, {255, 170, 255},
{255, 255, 0}, {255, 255, 85}, {255, 255, 170}, {255, 255, 255}};
#endif