Browse Source

Implement CIELAB and Oklab color space functions (#847)

Hannaford Schäfer 1 month ago
parent
commit
f105fb5162

+ 3 - 1
Include/RmlUi/Core/StringUtilities.h

@@ -53,7 +53,9 @@ namespace StringUtilities {
 	/// @param[out] string_list Resulting list of values.
 	/// @param[in] string String to expand.
 	/// @param[in] delimiter Delimiter found between entries in the string list.
-	RMLUICORE_API void ExpandString(StringList& string_list, const String& string, const char delimiter = ',');
+	/// @param[in] ignore_repeated_delimiters If true, repeated values of the delimiter will not add additional entries to the list.
+	RMLUICORE_API void ExpandString(StringList& string_list, const String& string, const char delimiter = ',',
+		bool ignore_repeated_delimiters = false);
 	/// Expands character-delimited list of values with custom quote characters.
 	/// @param[out] string_list Resulting list of values.
 	/// @param[in] string String to expand.

+ 418 - 97
Source/Core/PropertyParserColour.cpp

@@ -31,6 +31,7 @@
 #include <algorithm>
 #include <cmath>
 #include <string.h>
+#include <utility>
 
 namespace Rml {
 
@@ -42,7 +43,7 @@ static float HSL_f(float h, float s, float l, float n)
 	return l - a * std::max(-1.0f, std::min({k - 3.0f, 9.0f - k, 1.0f}));
 }
 
-// Ref: https://en.wikipedia.org/wiki/HSL_and_HSV#HSL_to_RGB_alternative
+// Reference: https://en.wikipedia.org/wiki/HSL_and_HSV#HSL_to_RGB_alternative
 static void HSLAToRGBA(Array<float, 4>& vals)
 {
 	if (vals[1] == 0.0f)
@@ -62,6 +63,83 @@ static void HSLAToRGBA(Array<float, 4>& vals)
 	}
 }
 
+// Reference: https://en.wikipedia.org/wiki/SRGB#Definition
+static float InverseSRGBNonlinearTransfer(float channel)
+{
+	return channel > 0.0031308f ? 1.055f * std::pow(channel, 1.0f / 2.4f) - 0.055f : 12.92f * channel;
+}
+
+// Reference: https://en.wikipedia.org/wiki/CIELAB_color_space#Converting_between_CIELAB_and_CIE_XYZ_coordinates
+static void CIELABToRGBA(Array<float, 4>& values)
+{
+	float y_double_prime = (values[0] + 16.0f) / 116.0f;
+	float x_double_prime = (values[1] / 500.0f) + y_double_prime;
+	float z_double_prime = y_double_prime - (values[2] / 200.0f);
+
+	float x_prime = (x_double_prime * x_double_prime * x_double_prime) > 0.008856f ? (x_double_prime * x_double_prime * x_double_prime)
+																				   : (x_double_prime - (16.0f / 116.0f)) / 7.787f;
+	float y_prime = (y_double_prime * y_double_prime * y_double_prime) > 0.008856f ? (y_double_prime * y_double_prime * y_double_prime)
+																				   : (y_double_prime - (16.0f / 116.0f)) / 7.787f;
+	float z_prime = (z_double_prime * z_double_prime * z_double_prime) > 0.008856f ? (z_double_prime * z_double_prime * z_double_prime)
+																				   : (z_double_prime - (16.0f / 116.0f)) / 7.787f;
+
+	static const Vector3f illuminant_d65_multiplicands(0.95047f, 1.0f, 1.08883f);
+
+	float x = x_prime * illuminant_d65_multiplicands.x;
+	float y = y_prime * illuminant_d65_multiplicands.y;
+	float z = z_prime * illuminant_d65_multiplicands.z;
+
+	static constexpr Array<Array<float, 3>, 3> xyz_to_srgb_matrix{
+		Array<float, 3>{+3.2404548f, -1.5371389f, -0.4985315f},
+		Array<float, 3>{-0.9692664f, +1.8760109f, +0.0415561f},
+		Array<float, 3>{+0.0556434f, -0.2040259f, +1.0572252f},
+	};
+
+	float r = xyz_to_srgb_matrix[0][0] * x + xyz_to_srgb_matrix[0][1] * y + xyz_to_srgb_matrix[0][2] * z;
+	float g = xyz_to_srgb_matrix[1][0] * x + xyz_to_srgb_matrix[1][1] * y + xyz_to_srgb_matrix[1][2] * z;
+	float b = xyz_to_srgb_matrix[2][0] * x + xyz_to_srgb_matrix[2][1] * y + xyz_to_srgb_matrix[2][2] * z;
+
+	values[0] = Math::Clamp(InverseSRGBNonlinearTransfer(r), 0.0f, 1.0f);
+	values[1] = Math::Clamp(InverseSRGBNonlinearTransfer(g), 0.0f, 1.0f);
+	values[2] = Math::Clamp(InverseSRGBNonlinearTransfer(b), 0.0f, 1.0f);
+}
+
+// References: https://en.wikipedia.org/wiki/Oklab_color_space#Conversions_between_color_spaces and https://bottosson.github.io/posts/oklab/
+static void OklabToRGBA(Array<float, 4>& values)
+{
+	static constexpr Array<Array<float, 3>, 3> oklab_to_lms_prime_matrix{
+		Array<float, 3>{+1.0f, +0.3963377774f, +0.2158037573f},
+		Array<float, 3>{+1.0f, -0.1055613458f, -0.0638541728f},
+		Array<float, 3>{+1.0f, -0.0894841775f, -1.2914855480f},
+	};
+
+	float lightness = values[0];
+	float a_axis = values[1];
+	float b_axis = values[2];
+
+	float l_prime = oklab_to_lms_prime_matrix[0][0] * lightness + oklab_to_lms_prime_matrix[0][1] * a_axis + oklab_to_lms_prime_matrix[0][2] * b_axis;
+	float m_prime = oklab_to_lms_prime_matrix[1][0] * lightness + oklab_to_lms_prime_matrix[1][1] * a_axis + oklab_to_lms_prime_matrix[1][2] * b_axis;
+	float s_prime = oklab_to_lms_prime_matrix[2][0] * lightness + oklab_to_lms_prime_matrix[2][1] * a_axis + oklab_to_lms_prime_matrix[2][2] * b_axis;
+
+	float l = l_prime * l_prime * l_prime;
+	float m = m_prime * m_prime * m_prime;
+	float s = s_prime * s_prime * s_prime;
+
+	static constexpr Array<Array<float, 3>, 3> lms_to_srgb_matrix{
+		Array<float, 3>{+4.0767416621f, -3.3077115913f, +0.2309699292f},
+		Array<float, 3>{-1.2684380046f, +2.6097574011f, -0.3413193965f},
+		Array<float, 3>{-0.0041960863f, -0.7034186147f, +1.7076147010f},
+	};
+
+	float r = lms_to_srgb_matrix[0][0] * l + lms_to_srgb_matrix[0][1] * m + lms_to_srgb_matrix[0][2] * s;
+	float g = lms_to_srgb_matrix[1][0] * l + lms_to_srgb_matrix[1][1] * m + lms_to_srgb_matrix[1][2] * s;
+	float b = lms_to_srgb_matrix[2][0] * l + lms_to_srgb_matrix[2][1] * m + lms_to_srgb_matrix[2][2] * s;
+
+	values[0] = Math::Clamp(InverseSRGBNonlinearTransfer(r), 0.0f, 1.0f);
+	values[1] = Math::Clamp(InverseSRGBNonlinearTransfer(g), 0.0f, 1.0f);
+	values[2] = Math::Clamp(InverseSRGBNonlinearTransfer(b), 0.0f, 1.0f);
+}
+
 struct PropertyParserColourData {
 	const UnorderedMap<String, Colourb> html_colours = {
 		{"black", Colourb(0, 0, 0)},
@@ -120,135 +198,378 @@ bool PropertyParserColour::ParseColour(Colourb& colour, const String& value)
 
 	colour = {};
 
-	// Check for a hex colour.
 	if (value[0] == '#')
 	{
-		char hex_values[4][2] = {{'f', 'f'}, {'f', 'f'}, {'f', 'f'}, {'f', 'f'}};
+		if (!ParseHexColour(colour, value))
+			return false;
+	}
+	else if (value.substr(0, 3) == "rgb")
+	{
+		if (!ParseRGBColour(colour, value))
+			return false;
+	}
+	else if (value.substr(0, 3) == "hsl")
+	{
+		if (!ParseHSLColour(colour, value))
+			return false;
+	}
+	else if (value.substr(0, 3) == "lab" || value.substr(0, 3) == "lch")
+	{
+		if (!ParseCIELABColour(colour, value))
+			return false;
+	}
+	else if (value.substr(0, 5) == "oklab" || value.substr(0, 5) == "oklch")
+	{
+		if (!ParseOklabColour(colour, value))
+			return false;
+	}
+	else
+	{
+		// Check for the specification of an HTML colour.
+		auto it = parser_data->html_colours.find(StringUtilities::ToLower(value));
+		if (it == parser_data->html_colours.end())
+			return false;
+		else
+			colour = it->second;
+	}
 
-		switch (value.size())
-		{
-		// Single hex digit per channel, RGB and alpha.
-		case 5:
-			hex_values[3][0] = hex_values[3][1] = value[4];
-			//-fallthrough
-		// Single hex digit per channel, RGB only.
-		case 4:
-			hex_values[0][0] = hex_values[0][1] = value[1];
-			hex_values[1][0] = hex_values[1][1] = value[2];
-			hex_values[2][0] = hex_values[2][1] = value[3];
-			break;
-
-		// Two hex digits per channel, RGB and alpha.
-		case 9:
-			hex_values[3][0] = value[7];
-			hex_values[3][1] = value[8];
-			//-fallthrough
-		// Two hex digits per channel, RGB only.
-		case 7: memcpy(hex_values, &value.c_str()[1], sizeof(char) * 6); break;
-
-		default: return false;
-		}
+	return true;
+}
 
-		// Parse each of the colour elements.
-		for (int i = 0; i < 4; i++)
-		{
-			int tens = Math::HexToDecimal(hex_values[i][0]);
-			int ones = Math::HexToDecimal(hex_values[i][1]);
-			if (tens == -1 || ones == -1)
-				return false;
+bool PropertyParserColour::ParseHexColour(Colourb& colour, const String& value)
+{
+	char hex_values[4][2] = {{'f', 'f'}, {'f', 'f'}, {'f', 'f'}, {'f', 'f'}};
 
-			colour[i] = (byte)(tens * 16 + ones);
-		}
+	switch (value.size())
+	{
+	// Single hex digit per channel, RGB and alpha.
+	case 5:
+		hex_values[3][0] = hex_values[3][1] = value[4];
+		//-fallthrough
+	// Single hex digit per channel, RGB only.
+	case 4:
+		hex_values[0][0] = hex_values[0][1] = value[1];
+		hex_values[1][0] = hex_values[1][1] = value[2];
+		hex_values[2][0] = hex_values[2][1] = value[3];
+		break;
+
+	// Two hex digits per channel, RGB and alpha.
+	case 9:
+		hex_values[3][0] = value[7];
+		hex_values[3][1] = value[8];
+		//-fallthrough
+	// Two hex digits per channel, RGB only.
+	case 7: memcpy(hex_values, &value.c_str()[1], sizeof(char) * 6); break;
+
+	default: return false;
 	}
-	else if (value.substr(0, 3) == "rgb" || value.substr(0, 3) == "hsl")
+
+	// Parse each of the colour elements.
+	for (int i = 0; i < 4; i++)
 	{
-		StringList values;
-		values.reserve(4);
+		int tens = Math::HexToDecimal(hex_values[i][0]);
+		int ones = Math::HexToDecimal(hex_values[i][1]);
+		if (tens == -1 || ones == -1)
+			return false;
+
+		colour[i] = (byte)(tens * 16 + ones);
+	}
 
-		size_t find = value.find('(');
-		if (find == String::npos)
+	return true;
+}
+
+bool PropertyParserColour::ParseRGBColour(Colourb& colour, const String& value)
+{
+	StringList values;
+	values.reserve(4);
+	if (!GetColourFunctionValues(values, value, true))
+		return false;
+
+	// Check if we're parsing an 'rgba' or 'rgb' colour declaration.
+	if (value.size() > 3 && value[3] == 'a')
+	{
+		if (values.size() != 4)
+			return false;
+	}
+	else
+	{
+		if (values.size() != 3)
 			return false;
 
-		size_t begin_values = find + 1;
+		values.push_back("255");
+	}
 
-		StringUtilities::ExpandString(values, value.substr(begin_values, value.rfind(')') - begin_values), ',');
+	// Parse the RGBA values.
+	for (int i = 0; i < 4; ++i)
+	{
+		int component;
 
-		if (value.substr(0, 3) == "rgb")
-		{
-			// Check if we're parsing an 'rgba' or 'rgb' colour declaration.
-			if (value.size() > 3 && value[3] == 'a')
-			{
-				if (values.size() != 4)
-					return false;
-			}
-			else
-			{
-				if (values.size() != 3)
-					return false;
+		// We're parsing a percentage value.
+		if (values[i].size() > 0 && values[i][values[i].size() - 1] == '%')
+			component = int((float)atof(values[i].substr(0, values[i].size() - 1).c_str()) * (255.0f / 100.0f));
+		// We're parsing a 0 -> 255 integer value.
+		else
+			component = atoi(values[i].c_str());
 
-				values.push_back("255");
-			}
+		colour[i] = (byte)(Math::Clamp(component, 0, 255));
+	}
 
-			// Parse the RGBA values.
-			for (int i = 0; i < 4; ++i)
-			{
-				int component;
+	return true;
+}
 
-				// We're parsing a percentage value.
-				if (values[i].size() > 0 && values[i][values[i].size() - 1] == '%')
-					component = int((float)atof(values[i].substr(0, values[i].size() - 1).c_str()) * (255.0f / 100.0f));
-				// We're parsing a 0 -> 255 integer value.
-				else
-					component = atoi(values[i].c_str());
+bool PropertyParserColour::ParseHSLColour(Colourb& colour, const String& value)
+{
+	StringList values;
+	values.reserve(4);
+	if (!GetColourFunctionValues(values, value, true))
+		return false;
 
-				colour[i] = (byte)(Math::Clamp(component, 0, 255));
-			}
+	// Check if we're parsing an 'hsla' or 'hsl' colour declaration.
+	if (value.size() > 3 && value[3] == 'a')
+	{
+		if (values.size() != 4)
+			return false;
+	}
+	else
+	{
+		if (values.size() != 3)
+			return false;
+
+		values.push_back("1.0");
+	}
+
+	// Parse the HSLA values.
+	Array<float, 4> vals;
+	// H is a number in degrees, A is a number between 0.0 and 1.0.
+	for (int i : {0, 3})
+		vals[i] = (float)atof(values[i].c_str());
+	// S and L are percentage values.
+	for (int i : {1, 2})
+		if (values[i].size() > 0 && values[i][values[i].size() - 1] == '%')
+			vals[i] = (float)atof(values[i].substr(0, values[i].size() - 1).c_str()) * (1.0f / 100.0f);
+		else
+			return false;
+
+	HSLAToRGBA(vals);
+	for (int i = 0; i < 4; ++i)
+		colour[i] = (byte)(Math::Clamp((int)(vals[i] * 255.0f), 0, 255));
+
+	return true;
+}
+
+bool PropertyParserColour::ParseCIELABColour(Colourb& colour, const String& value)
+{
+	StringList values;
+	values.reserve(5);
+	if (!GetColourFunctionValues(values, value, false))
+		return false;
+
+	// Check if we have an alpha component.
+	if (values.size() == 5)
+	{
+		if (values[3] != "/")
+			return false;
+
+		values[3] = std::move(values[4]);
+		values.pop_back();
+	}
+	else
+	{
+		if (values.size() != 3)
+			return false;
+
+		values.push_back("1.0");
+	}
+
+	Array<float, 4> lab_values;
+
+	// Parse lightness and alpha (same for both lab and lch).
+	for (int i : {0, 3})
+	{
+		// Value can either be 'none' (representing 0.0), a percentage between 0% and 100%, or a number (between 0.0 and 100.0 for lightness and between 0.0 and 1.0 for alpha).
+		if (values[i] == "none")
+			lab_values[i] = 0.0f;
+		else if (values[i][values[i].size() - 1] == '%')
+		{
+			lab_values[i] = (float)atof(values[i].substr(0, values[i].size() - 1).c_str());
+			if (i == 3)
+				lab_values[i] /= 100.0f;
 		}
 		else
+			lab_values[i] = (float)atof(values[i].c_str());
+
+		lab_values[i] = Math::Clamp(lab_values[i], 0.0f, i == 0 ? 100.0f : 1.0f);
+	}
+
+	// Determine if colour is in CIELAB or CIELCh space.
+	if (value.substr(0, 3) == "lab")
+	{
+		// Parse A-axis (green-to-red) and B-axis (blue-to-yellow).
+		for (int i : {1, 2})
 		{
-			// Check if we're parsing an 'hsla' or 'hsl' colour declaration.
-			if (value.size() > 3 && value[3] == 'a')
+			// Value can either be 'none' (representing 0.0), a percentage between -100% and +100% (representing -125.0 to +125.0), or a number.
+			if (values[i] == "none")
+				lab_values[i] = 0.0f;
+			else if (values[i][values[i].size() - 1] == '%')
 			{
-				if (values.size() != 4)
-					return false;
+				static constexpr float cielab_axis_percentage_bound = 125.0f;
+				lab_values[i] = (float)atof(values[i].substr(0, values[i].size() - 1).c_str()) / 100.0f * cielab_axis_percentage_bound;
 			}
 			else
-			{
-				if (values.size() != 3)
-					return false;
+				lab_values[i] = (float)atof(values[i].c_str());
 
-				values.push_back("1.0");
-			}
+			// Whilst the axis values are theoretically unbounded, in practice, they only exist between -160.0 and +160.0.
+			static constexpr float cielab_axis_bound_limit = 160.0f;
+			lab_values[i] = Math::Clamp(lab_values[i], -cielab_axis_bound_limit, +cielab_axis_bound_limit);
+		}
+	}
+	else
+	{
+		// Parse chroma; value can either be 'none' (representing 0.0), a percentage between 0% and 100% (representing 0.0 to 150.0), or a number.
+		float chroma = 0.0f;
+		if (values[1] == "none")
+			chroma = 0.0f;
+		else if (values[1][values[1].size() - 1] == '%')
+		{
+			static constexpr float cielch_maximum_percentage_chroma = 150.0f;
+			chroma = (float)atof(values[1].substr(0, values[1].size() - 1).c_str()) / 100.0f * cielch_maximum_percentage_chroma;
+		}
+		else
+			chroma = (float)atof(values[1].c_str());
+
+		// Whilst the chroma is theoretically unbounded, in practice, it does not exceed 230.0.
+		static constexpr float cielch_maximum_chroma = 230.0f;
+		chroma = Math::Clamp(chroma, 0.0f, cielch_maximum_chroma);
+
+		// Parse hue; value can either be 'none' (representing 0.0), or an angle.
+		float hue = 0.0f;
+		if (values[2] == "none")
+			hue = 0.0f;
+		else
+			hue = (float)atof(values[2].c_str());
 
-			// Parse the HSLA values.
-			Array<float, 4> vals;
-			// H is a number in degrees, A is a number between 0.0 and 1.0.
-			for (int i : {0, 3})
-				vals[i] = (float)atof(values[i].c_str());
-			// S and L are percentage values.
-			for (int i : {1, 2})
-				if (values[i].size() > 0 && values[i][values[i].size() - 1] == '%')
-					vals[i] = (float)atof(values[i].substr(0, values[i].size() - 1).c_str()) * (1.0f / 100.0f);
-				else
-					return false;
-
-			HSLAToRGBA(vals);
-			for (int i = 0; i < 4; ++i)
+		// Convert LCh polar coordinates to LAB Cartesian coordinates.
+		lab_values[1] = chroma * Math::Cos(Math::DegreesToRadians(hue));
+		lab_values[2] = chroma * Math::Sin(Math::DegreesToRadians(hue));
+	}
+
+	CIELABToRGBA(lab_values);
+	for (int i = 0; i < 4; ++i)
+		colour[i] = (byte)(Math::Clamp((int)(lab_values[i] * 255.0f), 0, 255));
+
+	return true;
+}
+
+bool PropertyParserColour::ParseOklabColour(Colourb& colour, const String& value)
+{
+	StringList values;
+	values.reserve(5);
+	if (!GetColourFunctionValues(values, value, false))
+		return false;
+
+	// Check if we have an alpha component.
+	if (values.size() == 5)
+	{
+		if (values[3] != "/")
+			return false;
+
+		values[3] = std::move(values[4]);
+		values.pop_back();
+	}
+	else
+	{
+		if (values.size() != 3)
+			return false;
+
+		values.push_back("1.0");
+	}
+
+	Array<float, 4> oklab_values;
+
+	// Parse lightness and alpha (same for both Oklab and Oklch).
+	for (int i : {0, 3})
+	{
+		// Value can either be 'none' (representing 0.0), a percentage between 0% and 100%, or a number between 0.0 and 1.0.
+		if (values[i] == "none")
+			oklab_values[i] = 0.0f;
+		else if (values[i][values[i].size() - 1] == '%')
+			oklab_values[i] = (float)atof(values[i].substr(0, values[i].size() - 1).c_str()) / 100.0f;
+		else
+			oklab_values[i] = (float)atof(values[i].c_str());
+
+		oklab_values[i] = Math::Clamp(oklab_values[i], 0.0f, 1.0f);
+	}
+
+	// Determine if colour is in Oklab or Oklch space.
+	if (value.substr(0, 5) == "oklab")
+	{
+		// Parse A-axis (green-to-red) and B-axis (blue-to-yellow).
+		for (int i : {1, 2})
+		{
+			// Value can either be 'none' (representing 0.0), a percentage between -100% and +100% (representing -0.4 to +0.4), or a number.
+			if (values[i] == "none")
+				oklab_values[i] = 0.0f;
+			else if (values[i][values[i].size() - 1] == '%')
 			{
-				colour[i] = (byte)(Math::Clamp((int)(vals[i] * 255.0f), 0, 255));
+				static constexpr float oklab_axis_percentage_bound = 0.4f;
+				oklab_values[i] = (float)atof(values[i].substr(0, values[i].size() - 1).c_str()) / 100.0f * oklab_axis_percentage_bound;
 			}
+			else
+				oklab_values[i] = (float)atof(values[i].c_str());
+
+			// Whilst the axis values are theoretically unbounded, in practice, they only exist between -0.5 and +0.5.
+			static constexpr float oklab_axis_bound_limit = 0.5f;
+			oklab_values[i] = Math::Clamp(oklab_values[i], -oklab_axis_bound_limit, +oklab_axis_bound_limit);
 		}
 	}
 	else
 	{
-		// Check for the specification of an HTML colour.
-		auto it = parser_data->html_colours.find(StringUtilities::ToLower(value));
-		if (it == parser_data->html_colours.end())
-			return false;
+		// Parse chroma; value can either be 'none' (representing 0.0), a percentage between 0% and 100% (representing 0.0 to 0.4), or a number.
+		float chroma = 0.0f;
+		if (values[1] == "none")
+			chroma = 0.0f;
+		else if (values[1][values[1].size() - 1] == '%')
+		{
+			static constexpr float oklch_maximum_percentage_chroma = 0.4f;
+			chroma = (float)atof(values[1].substr(0, values[1].size() - 1).c_str()) / 100.0f * oklch_maximum_percentage_chroma;
+		}
 		else
-			colour = it->second;
+			chroma = (float)atof(values[1].c_str());
+
+		// Whilst the chroma is theoretically unbounded, in practice, it does not exceed 0.5.
+		static constexpr float oklch_maximum_chroma = 0.5f;
+		chroma = Math::Clamp(chroma, 0.0f, oklch_maximum_chroma);
+
+		// Parse hue; value can either be 'none' (representing 0.0), or an angle.
+		float hue = 0.0f;
+		if (values[2] == "none")
+			hue = 0.0f;
+		else
+			hue = (float)atof(values[2].c_str());
+
+		// Convert Oklch polar coordinates to Oklab Cartesian coordinates.
+		oklab_values[1] = chroma * Math::Cos(Math::DegreesToRadians(hue));
+		oklab_values[2] = chroma * Math::Sin(Math::DegreesToRadians(hue));
 	}
 
+	OklabToRGBA(oklab_values);
+	for (int i = 0; i < 4; ++i)
+		colour[i] = (byte)(Math::Clamp((int)(oklab_values[i] * 255.0f), 0, 255));
+
+	return true;
+}
+
+bool PropertyParserColour::GetColourFunctionValues(StringList& values, const String& value, bool is_comma_separated)
+{
+	size_t find = value.find('(');
+	if (find == String::npos)
+		return false;
+
+	size_t begin_values = find + 1;
+
+	StringUtilities::ExpandString(values, value.substr(begin_values, value.rfind(')') - begin_values), is_comma_separated ? ',' : ' ',
+		!is_comma_separated);
+
 	return true;
 }
 

+ 19 - 0
Source/Core/PropertyParserColour.h

@@ -61,6 +61,25 @@ public:
 
 private:
 	static ControlledLifetimeResource<struct PropertyParserColourData> parser_data;
+
+	// Parse a colour in hex-code form (e.g. #FF00FF or #00FF00FF).
+	static bool ParseHexColour(Colourb& colour, const String& value);
+
+	// Parse a colour in RGB form (e.g. rgb(255, 0, 255) or rgba(0, 255, 0, 255)).
+	static bool ParseRGBColour(Colourb& colour, const String& value);
+
+	// Parse a colour in HSL form (e.g. hsl(0, 100%, 50%) or hsla(0, 100%, 50%, 1.0)).
+	static bool ParseHSLColour(Colourb& colour, const String& value);
+
+	// Parse a colour in CIELAB form (e.g. lab(100.0 0.0 0.0) or lab(50.0 -60.0 60.0 / 0.5)
+	//     or CIELCh form (e.g. lch(100.0 0.0 30) or lch(100.0 0.0 60 / 0.5)).
+	static bool ParseCIELABColour(Colourb& colour, const String& value);
+
+	// Parse a colour in Oklab form (e.g. oklab(1.0 0.0 0.0) or oklab(0.5 -0.2 0.2 / 0.5))
+	//     or Oklch form (e.g. oklch(1.0 0.0 30) or oklch(1.0 0.0 60 / 0.5)).
+	static bool ParseOklabColour(Colourb& colour, const String& value);
+
+	static bool GetColourFunctionValues(StringList& values, const String& value, bool is_comma_separated);
 };
 
 } // namespace Rml

+ 2 - 2
Source/Core/StringUtilities.cpp

@@ -255,7 +255,7 @@ String StringUtilities::Replace(String subject, char search, char replace)
 	return subject;
 }
 
-void StringUtilities::ExpandString(StringList& string_list, const String& string, const char delimiter)
+void StringUtilities::ExpandString(StringList& string_list, const String& string, const char delimiter, bool ignore_repeated_delimiters)
 {
 	char quote = 0;
 	bool last_char_delimiter = true;
@@ -289,7 +289,7 @@ void StringUtilities::ExpandString(StringList& string_list, const String& string
 		{
 			if (start_ptr)
 				string_list.emplace_back(start_ptr, end_ptr + 1);
-			else
+			else if (!ignore_repeated_delimiters)
 				string_list.emplace_back();
 			last_char_delimiter = true;
 			start_ptr = nullptr;

+ 36 - 0
Tests/Source/UnitTests/Properties.cpp

@@ -186,6 +186,42 @@ TEST_CASE("Properties")
 					ColorStop{ColourbPremultiplied(0, 127, 0, 127), NumericValue{10.f, Unit::DP}},
 				},
 			},
+			{
+				"lab(55% none none), lab(30% 67% -110) 50%, lab(90% -90 80 / 0.5) 10dp",
+				"#838383, #0000fb 50%, #00ff267f 10dp",
+				{
+					ColorStop{ColourbPremultiplied(131, 131, 131), NumericValue{}},
+					ColorStop{ColourbPremultiplied(0, 0, 251), NumericValue{50.f, Unit::PERCENT}},
+					ColorStop{ColourbPremultiplied(0, 127, 19, 127), NumericValue{10.f, Unit::DP}},
+				},
+			},
+			{
+				"lch(55% none 300.0), lch(30% 85% 180.0) 50%, lch(90% 90 100.0 / 50%) 10dp",
+				"#838383, #006044 50%, #f0e6007f 10dp",
+				{
+					ColorStop{ColourbPremultiplied(131, 131, 131), NumericValue{}},
+					ColorStop{ColourbPremultiplied(0, 96, 68), NumericValue{50.f, Unit::PERCENT}},
+					ColorStop{ColourbPremultiplied(120, 115, 0, 127), NumericValue{10.f, Unit::DP}},
+				},
+			},
+			{
+				"oklab(85% -50% 70%), oklab(0.2 0.4 -0.4) 50%, oklab(100% none 0.4 / 0.25) 10dp",
+				"#98ed00, #6600c1 50%, #ffde003f 10dp",
+				{
+					ColorStop{ColourbPremultiplied(152, 237, 0), NumericValue{}},
+					ColorStop{ColourbPremultiplied(102, 0, 193), NumericValue{50.f, Unit::PERCENT}},
+					ColorStop{ColourbPremultiplied(63, 55, 0, 63), NumericValue{10.f, Unit::DP}},
+				},
+			},
+			{
+				"oklch(75% 100% 30.0), oklch(0.5 0.2 270) 50%, oklch(1.0 0.1 none / 0.5) 10dp",
+				"#ff0000, #3a50d2 50%, #ffe2fa7f 10dp",
+				{
+					ColorStop{ColourbPremultiplied(255, 0, 0), NumericValue{}},
+					ColorStop{ColourbPremultiplied(58, 80, 210), NumericValue{50.f, Unit::PERCENT}},
+					ColorStop{ColourbPremultiplied(127, 113, 125, 127), NumericValue{10.f, Unit::DP}},
+				},
+			},
 			{
 				"red 50px 20%, blue 10in",
 				"#ff0000 50px, #ff0000 20%, #0000ff 10in",