Furrent
colors.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <raylib/raygui.h>
4 
5 #include <cstdint>
6 
7 namespace fur::gui {
8 
9 // Colors
10 const int DARK_BROWN_HEX = static_cast<int>(0x876645FF);
11 const int ORANGE_HEX = static_cast<int>(0xD27607FF);
12 const int LIGHT_BACKGROUND_HEX = static_cast<int>(0xF6F2EEFF);
13 const int DARK_BACKGROUND_HEX = static_cast<int>(0xBA9978FF);
14 const int PRESSED_BACKGROUND_HEX = static_cast<int>(0xEDE9E0FF);
15 const int DOWNLOADING_COLOR_HEX = static_cast<int>(0x0091FFFF);
16 const int STOP_COLOR_HEX = static_cast<int>(0xFFAF7AFF);
17 const int DONE_COLOR_HEX = static_cast<int>(0x00FF5EFF);
18 const int ERROR_COLOR_HEX = static_cast<int>(0xFFA590FF);
19 
20 // Raygui colors
21 const Color DARK_BROWN_COLOR = GetColor(DARK_BROWN_HEX);
25 
26 // Window constants
27 const int WINDOW_BORDER = 5;
28 
29 } // namespace fur::gui
fur::gui::DONE_COLOR_HEX
const int DONE_COLOR_HEX
Definition: colors.hpp:17
fur::gui::WINDOW_BORDER
const int WINDOW_BORDER
Definition: colors.hpp:27
fur::gui::LIGHT_BACKGROUND_HEX
const int LIGHT_BACKGROUND_HEX
Definition: colors.hpp:12
fur::gui::DARK_BROWN_COLOR
const Color DARK_BROWN_COLOR
Definition: colors.hpp:21
fur::gui::STOP_COLOR_HEX
const int STOP_COLOR_HEX
Definition: colors.hpp:16
fur::gui::ERROR_COLOR_HEX
const int ERROR_COLOR_HEX
Definition: colors.hpp:18
fur::gui::PRESSED_BACKGROUND_COLOR
const Color PRESSED_BACKGROUND_COLOR
Definition: colors.hpp:23
fur::gui::DARK_BACKGROUND_HEX
const int DARK_BACKGROUND_HEX
Definition: colors.hpp:13
fur::gui::ORANGE_HEX
const int ORANGE_HEX
Definition: colors.hpp:11
fur::gui::DIALOG_BACKGROUND_COLOR
const Color DIALOG_BACKGROUND_COLOR
Definition: colors.hpp:24
fur::gui::DARK_BACKGROUND_COLOR
const Color DARK_BACKGROUND_COLOR
Definition: colors.hpp:22
fur::gui
Definition: colors.hpp:7
fur::gui::DARK_BROWN_HEX
const int DARK_BROWN_HEX
Definition: colors.hpp:10
fur::gui::DOWNLOADING_COLOR_HEX
const int DOWNLOADING_COLOR_HEX
Definition: colors.hpp:15
fur::gui::PRESSED_BACKGROUND_HEX
const int PRESSED_BACKGROUND_HEX
Definition: colors.hpp:14