forked from raduprv/Eternal-Lands
-
Notifications
You must be signed in to change notification settings - Fork 0
/
colors.c
35 lines (34 loc) · 2.34 KB
/
colors.c
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
35
#include "colors.h"
#include "client_serv.h"
const color_rgb colors_list[] =
{
// r1, g1, b1, r2, g2, b2, r3, g3, b3, r4, g4, b4
[c_red1] = {255, 179, 193, 255, 148, 168, 223, 93, 116, 132, 39, 56},
[c_red2] = {250, 90, 90, 224, 60, 60, 188, 27, 27, 89, 5, 5},
[c_red3] = {221, 2, 2, 182, 3, 3, 142, 3, 3, 74, 1, 1},
[c_red4] = {126, 3, 3, 102, 2, 2, 79, 2, 2, 30, 1, 1},
[c_orange1] = {247, 196, 159, 232, 164, 115, 216, 133, 72, 149, 75, 22},
[c_orange2] = {252, 122, 58, 216, 75, 1, 163, 64, 6, 82, 34, 2},
[c_orange3] = {191, 102, 16, 147, 79, 13, 110, 56, 3, 47, 24, 1},
[c_orange4] = {131, 48, 3, 104, 38, 2, 76, 28, 2, 30, 11, 1},
[c_yellow1] = {251, 250, 190, 245, 243, 125, 216, 215, 36, 112, 111, 2},
[c_yellow2] = {252, 236, 56, 243, 207, 0, 197, 156, 4, 111, 79, 2},
[c_yellow3] = {231, 174, 20, 207, 147, 15, 158, 102, 7, 64, 37, 1},
[c_yellow4] = {130, 111, 6, 101, 86, 4, 73, 62, 3, 44, 37, 1},
[c_green1] = {201, 254, 203, 145, 255, 150, 70, 236, 78, 6, 108, 11},
[c_green2] = { 5, 250, 155, 11, 177, 112, 1, 135, 83, 3, 93, 58},
[c_green3] = { 37, 196, 0, 33, 167, 1, 28, 138, 3, 2, 64, 40},
[c_green4] = { 20, 149, 4, 2, 99, 11, 12, 85, 2, 12, 85, 2},
[c_blue1] = {169, 239, 250, 120, 228, 244, 54, 192, 213, 5, 96, 110},
[c_blue2] = {118, 151, 248, 83, 117, 227, 39, 74, 186, 4, 34, 132},
[c_blue3] = { 68, 72, 210, 55, 58, 176, 41, 44, 142, 1, 18, 72},
[c_blue4] = { 15, 15, 186, 6, 6, 150, 1, 1, 103, 1, 2, 62},
[c_purple1] = {210, 180, 251, 179, 128, 247, 134, 51, 248, 49, 5, 110},
[c_purple2] = {217, 93, 244, 191, 62, 220, 132, 32, 153, 92, 5, 110},
[c_purple3] = {130, 84, 246, 84, 2, 167, 67, 2, 134, 63, 0, 76},
[c_purple4] = {106, 1, 172, 63, 1, 103, 49, 1, 80, 31, 1, 61},
[c_grey1] = {255, 255, 255, 231, 231, 231, 175, 175, 175, 134, 134, 134},
[c_grey2] = {153, 153, 153, 132, 132, 132, 110, 110, 110, 60, 60, 60},
[c_grey3] = {158, 158, 158, 114, 114, 114, 71, 71, 71, 27, 27, 27},
[c_grey4] = { 40, 40, 40, 27, 27, 27, 13, 13, 13, 0, 0, 0}
};