diff options
| author | Physick <96335032+DegustatorPonos@users.noreply.github.com> | 2026-07-07 23:41:37 +0500 |
|---|---|---|
| committer | Physick <96335032+DegustatorPonos@users.noreply.github.com> | 2026-07-07 23:41:37 +0500 |
| commit | 73efefa4c6800b04aedad9f6d80722caa66864a0 (patch) | |
| tree | f1d5489d9c1660a4ae622bc3d4a31778369f9fc4 /src/resources/resources.h | |
| parent | 1a095735b1d8e7ade61ac4f936032e0c9dcc044f (diff) | |
design 1
Diffstat (limited to 'src/resources/resources.h')
| -rw-r--r-- | src/resources/resources.h | 13 |
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(); |
