summaryrefslogtreecommitdiff
path: root/src/static-missing-texture.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/static-missing-texture.hpp')
-rw-r--r--src/static-missing-texture.hpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/static-missing-texture.hpp b/src/static-missing-texture.hpp
new file mode 100644
index 0000000..83f7162
--- /dev/null
+++ b/src/static-missing-texture.hpp
@@ -0,0 +1,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 */