summaryrefslogtreecommitdiff
path: root/src/resources
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources')
-rw-r--r--src/resources/resources.c1
-rw-r--r--src/resources/resources.h13
2 files changed, 12 insertions, 2 deletions
diff --git a/src/resources/resources.c b/src/resources/resources.c
index 55bf3ce..031ee25 100644
--- a/src/resources/resources.c
+++ b/src/resources/resources.c
@@ -9,4 +9,3 @@ void LoadResources() {
}
Font *GetMainFont() { return &MainFont; }
-
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();