From a32cae4c3bf4442b6298d93a95e618bf8a9cb1ce Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 16 Dec 2019 19:45:04 +0100 Subject: [PATCH] LibDraw: Parse the color name "pink" to #ffc0cb --- Libraries/LibDraw/Color.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Libraries/LibDraw/Color.cpp b/Libraries/LibDraw/Color.cpp index 2596f65855..bc68072239 100644 --- a/Libraries/LibDraw/Color.cpp +++ b/Libraries/LibDraw/Color.cpp @@ -116,6 +116,7 @@ Optional Color::from_string(const StringView& string) { 0x000000, "black" }, { 0xc0c0c0, "silver" }, { 0x808080, "gray" }, + { 0xffc0cb, "pink" }, { 0x000000, nullptr } };