summaryrefslogtreecommitdiff
path: root/src/resources/resources.h
blob: 5cc24ff9326662e390ebaeac4f7a094fd166ffcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <raylib.h>

#ifndef RESOURCES_H
#define RESOURCES_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();

#endif // RESOURCES_H