diff --git a/src/app/color.cpp b/src/app/color.cpp index 0fa7d4672..2cb0b9e70 100644 --- a/src/app/color.cpp +++ b/src/app/color.cpp @@ -262,6 +262,11 @@ std::string Color::toHumanReadableString(PixelFormat pixelFormat, HumanReadableS ASSERT(false); break; } + + result << " #" << std::hex << std::setfill('0') + << std::setw(2) << getRed() + << std::setw(2) << getGreen() + << std::setw(2) << getBlue(); } else if (humanReadable == ShortHumanReadableString) { switch (getType()) {