| Operator Type: | Property |
| Operator Scope of Action: | Item |
| Operator Purpose: | Color |
$MyColor.brightness
New to v5.7.0, this operator sets or returns the brightness value of the associated Color-type attribute. The value is a number in the range 0-100. This operator is intended to replace the existing brightness() operator. Examples:
$MyColor.brightness = 50 (sets 50% brightness)
$MyColor2.brightness = $MyColor.brightness (matches brightness levels)
$MyNumber = $MyColor.brightness (returns 50 - from above example)
