|
| static const ImVec4 | RED = ImVec4(0xff / 255., 0x3b / 255., 0x30 / 255., 1) |
| |
| static const ImVec4 | GREEN = ImVec4(0x34 / 255., 0xc7 / 255., 0x59 / 255., 1) |
| |
| static const ImVec4 | BLUE = ImVec4(0x00 / 255., 0x7a / 255., 0xff / 255., 1) |
| |
| static const ImVec4 | YELLOW = ImVec4(0xff / 255., 0xcc / 255., 0x00 / 255., 1) |
| |
| static const ImVec4 | SHADED_RED = ImVec4(0xff / 255., 0x69 / 255., 0x61 / 255., 1) |
| |
| static const ImVec4 | SHADED_GREEN = ImVec4(0x86 / 255., 0xd9 / 255., 0x88 / 255., 1) |
| |
| static const ImVec4 | SHADED_BLUE = ImVec4(0x5a / 255., 0xc8 / 255., 0xfa / 255., 1) |
| |
| static const ImVec4 | SHADED_YELLOW = ImVec4(0xff / 255., 0xd6 / 255., 0x0a / 255., 1) |
| |
| static const ImVec4 | DARK_RED = ImVec4(0xda / 255., 0x29 / 255., 0x1c / 255., 1) |
| |
| static const ImVec4 | DARK_GREEN = ImVec4(0x1e / 255., 0x84 / 255., 0x49 / 255., 1) |
| |
| static const ImVec4 | DARK_YELLOW = ImVec4(0xff / 255., 0x9f / 255., 0x0a / 255., 1) |
| |
| static const ImVec4 | WHITE = ImVec4(0xf5 / 255., 0xf5 / 255., 0xf7 / 255., 1) |
| |
| static const ImVec4 | BLACK = ImVec4(0x1c / 255., 0x1c / 255., 0x1e / 255., 1) |
| |
| static const ImVec4 | GRAY = ImVec4(0x2c / 255., 0x2c / 255., 0x2e / 255., 1) |
| |
| static const ImVec4 | LIGHT_GRAY = ImVec4(0x3a / 255., 0x3a / 255., 0x3c / 255., 1) |
| |
An helper class for colors and palettes.
Definition at line 20 of file PaletteHelpers.h.