Furrent
|
#include <raylib/raygui.h>
#include <cstdint>
Go to the source code of this file.
Namespaces | |
fur | |
Common types used in all the project. | |
fur::gui | |
Variables | |
const int | fur::gui::DARK_BROWN_HEX = static_cast<int>(0x876645FF) |
const int | fur::gui::ORANGE_HEX = static_cast<int>(0xD27607FF) |
const int | fur::gui::LIGHT_BACKGROUND_HEX = static_cast<int>(0xF6F2EEFF) |
const int | fur::gui::DARK_BACKGROUND_HEX = static_cast<int>(0xBA9978FF) |
const int | fur::gui::PRESSED_BACKGROUND_HEX = static_cast<int>(0xEDE9E0FF) |
const int | fur::gui::DOWNLOADING_COLOR_HEX = static_cast<int>(0x0091FFFF) |
const int | fur::gui::STOP_COLOR_HEX = static_cast<int>(0xFFAF7AFF) |
const int | fur::gui::DONE_COLOR_HEX = static_cast<int>(0x00FF5EFF) |
const int | fur::gui::ERROR_COLOR_HEX = static_cast<int>(0xFFA590FF) |
const Color | fur::gui::DARK_BROWN_COLOR = GetColor(DARK_BROWN_HEX) |
const Color | fur::gui::DARK_BACKGROUND_COLOR = GetColor(DARK_BACKGROUND_HEX) |
const Color | fur::gui::PRESSED_BACKGROUND_COLOR = GetColor(PRESSED_BACKGROUND_HEX) |
const Color | fur::gui::DIALOG_BACKGROUND_COLOR = Fade(PRESSED_BACKGROUND_COLOR, 0.85f) |
const int | fur::gui::WINDOW_BORDER = 5 |