3 %>@brief Enlightens all colors in the COLORS global
5 %> @param factor=1.5 Multiplier
8 if nargin < 1 || isempty(factor)
14 COLORS = cellfun(@(x)
iif(any(x > 1), min(x*factor, 255), min(x*1.45, 1)), COLORS, 'UniformOutput', 0);
function iif(in cond, in x1, in x2)
function enlighten_colors(in factor)