From 01914322183b9160d7ebeee81e30f525456eaec9 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Fri, 24 May 2024 09:54:44 -0700 Subject: [PATCH] Updated HtmlColor object API (markdown) --- HtmlColor-object-API.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/HtmlColor-object-API.md b/HtmlColor-object-API.md index ef2ffa8..7737971 100644 --- a/HtmlColor-object-API.md +++ b/HtmlColor-object-API.md @@ -1,4 +1,7 @@ -HtmlColor represents a color object that uses the Html color value standard that is represented by a single uint32_t. The primary use of this class is to convert to other color objects. +HtmlColor represents a color object that uses the Html color value standard that is represented by a single uint32_t. The primary use of this class is to convert to other color objects. + +**NOTE:** HtmlColor has no concept of W channels. It can be converted to RGB, but when converted to RGBW, RGBWW, and RGBWWW the W channels will always be empty. + Below is an example that will create a RgbColor with the Html color value for yellow. ``` RgbColor yellow( HtmlColor( 0xffff00 ) );