summaryrefslogtreecommitdiff
path: root/src/resources/resources.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/resources.h')
-rw-r--r--src/resources/resources.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/resources/resources.h b/src/resources/resources.h
index a368a02..5cc24ff 100644
--- a/src/resources/resources.h
+++ b/src/resources/resources.h
@@ -1,7 +1,18 @@
+#include <raylib.h>
+
#ifndef RESOURCES_H
#define RESOURCES_H
-#include <raylib.h>
+/// #670916 as RGBA
+static const Color COLORSCHEME_BROWN = { 103, 9, 22, 255 };
+/// #CF042C as RGBA
+static const Color COLORSCHEME_RED = { 207, 4, 44, 255 };
+/// #F0781C as RGBA
+static const Color COLORSCHEME_ORANGE = { 240, 120, 28, 255 };
+/// #f7bc53 as RGBA
+static const Color COLORSCHEME_YELLOW = { 247, 188, 83, 255 };
+/// #E9E1B9 as RGBA
+static const Color COLORSCHEME_WHITE = { 233, 225, 185, 255 };
void LoadResources();
Font *GetMainFont();