Operator Type:
Operator Scope of Action:
Operator Purpose:
Data Type Returned:
Operator First Added:
Operator in Current Baseline:
Operator Last Altered:
Property [other Property type actions]
Item [operators of similar scope]
Color [other Color operators]
Number [about Number data type]
v5.7.0
Baseline
As at baseline
Syntax note: Operators without any defined mandatory arguments may omit their empty closing parentheses
Color.brightness()
Color.brightness
This property 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)