summaryrefslogtreecommitdiff
path: root/include/mbgl/util/color.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/util/color.hpp')
-rw-r--r--include/mbgl/util/color.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/mbgl/util/color.hpp b/include/mbgl/util/color.hpp
index 4be380fde3..7693ce636d 100644
--- a/include/mbgl/util/color.hpp
+++ b/include/mbgl/util/color.hpp
@@ -17,6 +17,10 @@ public:
static constexpr Color black() { return { 0.0f, 0.0f, 0.0f, 1.0f }; };
static constexpr Color white() { return { 1.0f, 1.0f, 1.0f, 1.0f }; };
+ static constexpr Color red() { return { 1.0f, 0.0f, 0.0f, 1.0f }; };
+ static constexpr Color green() { return { 0.0f, 1.0f, 0.0f, 1.0f }; };
+ static constexpr Color blue() { return { 0.0f, 0.0f, 1.0f, 1.0f }; };
+
static optional<Color> parse(const std::string&);
};