summaryrefslogtreecommitdiff
path: root/src/static-missing-texture.hpp
blob: 83f7162b9e00f9578c7c457e37c608b97fff14fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef PKE_STATIC_MISSING_TEXTURE_HPP
#define PKE_STATIC_MISSING_TEXTURE_HPP

/*
 * 0: #373b3e (55,59,62) // dark grey (desaturated light blue)
 * 1: #bec8d1 (190,200,209) // light grey (desaturated light blue)
 * 2: #86cecb (134,206,203) // light cyan
 * 3: #137a7f (19,122,127) // dark cyan
 * 4: #e12885 (225,40,133) // magenta
 */

const unsigned long PKE_MISSING_TEXTURE_BYTE_COUNT = 16;
const unsigned char PKE_MISSING_TEXTURE_DATA[PKE_MISSING_TEXTURE_BYTE_COUNT] = {
    // top left : color 0
    0x37, 0x3b, 0x3e, 0xff,
    // top right : color 2
    0x86, 0xce, 0xcb, 0xff,
    // bottom left : color 3
    0x13, 0x7a, 0x7f, 0xff,
    // bottom right : color 4
    0xe1, 0x28, 0x85, 0xff,
};

#endif /* PKE_STATIC_MISSING_TEXTURE_HPP */