2023-02-02 21:15:13 +02:00
|
|
|
/*
|
|
|
|
* ICursor.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2023-07-31 18:50:55 +02:00
|
|
|
#include "../../lib/Color.h"
|
2023-02-02 21:15:13 +02:00
|
|
|
|
|
|
|
/**
|
2023-07-31 18:50:55 +02:00
|
|
|
* The colors class defines color constants of type ColorRGBA.
|
2023-02-02 21:15:13 +02:00
|
|
|
*/
|
|
|
|
class Colors
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** the h3 yellow color, typically used for headlines */
|
2023-07-31 18:50:55 +02:00
|
|
|
static const ColorRGBA YELLOW;
|
2023-02-02 21:15:13 +02:00
|
|
|
|
|
|
|
/** the standard h3 white color */
|
2023-07-31 18:50:55 +02:00
|
|
|
static const ColorRGBA WHITE;
|
2023-02-02 21:15:13 +02:00
|
|
|
|
|
|
|
/** the metallic gold color used mostly as a border around buttons */
|
2023-07-31 18:50:55 +02:00
|
|
|
static const ColorRGBA METALLIC_GOLD;
|
2023-02-02 21:15:13 +02:00
|
|
|
|
|
|
|
/** green color used for in-game console */
|
2023-07-31 18:50:55 +02:00
|
|
|
static const ColorRGBA GREEN;
|
2023-02-02 21:15:13 +02:00
|
|
|
|
|
|
|
/** the h3 orange color, used for blocked buttons */
|
2023-07-31 18:50:55 +02:00
|
|
|
static const ColorRGBA ORANGE;
|
2023-02-02 21:15:13 +02:00
|
|
|
|
|
|
|
/** the h3 bright yellow color, used for selection border */
|
2023-07-31 18:50:55 +02:00
|
|
|
static const ColorRGBA BRIGHT_YELLOW;
|
2023-02-02 21:15:13 +02:00
|
|
|
|
|
|
|
/** default key color for all 8 & 24 bit graphics */
|
2023-07-31 18:50:55 +02:00
|
|
|
static const ColorRGBA DEFAULT_KEY_COLOR;
|
2023-02-02 21:15:13 +02:00
|
|
|
|
|
|
|
/// Selected creature card
|
2023-07-31 18:50:55 +02:00
|
|
|
static const ColorRGBA RED;
|
2023-02-02 21:15:13 +02:00
|
|
|
|
|
|
|
/// Minimap border
|
2023-07-31 18:50:55 +02:00
|
|
|
static const ColorRGBA PURPLE;
|
2023-02-02 21:15:13 +02:00
|
|
|
|
2023-07-31 18:50:55 +02:00
|
|
|
static const ColorRGBA CYAN;
|
2023-06-02 15:42:18 +02:00
|
|
|
|
2023-07-31 18:50:55 +02:00
|
|
|
static const ColorRGBA BLACK;
|
2023-02-02 21:15:13 +02:00
|
|
|
|
2023-07-31 18:50:55 +02:00
|
|
|
static const ColorRGBA TRANSPARENCY;
|
2023-02-02 21:15:13 +02:00
|
|
|
};
|