Closed schonlau closed 1 year ago
Stata allows specifying colors by name, modified by intensity (red%50 or red*.5) . Stata allows allows rgb and other values that are specified inside a string, such as "173 216 230" (this is an color specified in RGB). See help colorstyle
help colorstyle
However, hammock speaker1 speaker2 type, label hivar(type) hival(1 2) colorlist(red "173 216 230")
hammock does not parse those color strings correctly.
v1.29 solved this using compound quotes :
hammock speaker1 speaker2 type, label hivar(type) hival(1 2) colorlist(`" red "173 216 230" "')
Stata allows specifying colors by name, modified by intensity (red%50 or red*.5) . Stata allows allows rgb and other values that are specified inside a string, such as "173 216 230" (this is an color specified in RGB). See
help colorstyle
However, hammock speaker1 speaker2 type, label hivar(type) hival(1 2) colorlist(red "173 216 230")
hammock does not parse those color strings correctly.