"Alt, else" boxes background colors

+1 vote
asked Jul 12, 2016 in Closed question / help by anonymous
Hi!  My diagram has got a lot of loop alt end else boxes. It's hard to read and I would like to add different colours to these boxes. How can I do this?
commented Nov 6, 2018 by mikhail
If there is the possibility of automatic apply of safe color/palette and pattern? For example shades of green for successful and red for errors.

1 Answer

+1 vote
answered Dec 3, 2016 by anonymous
alt #Red auth

end

commented Sep 21, 2018 by michael.krauklis (100 points)
Perfect, thank you! It should be noted that this works for other "group" types, including group, loop, etc. Also, you can specify the color on an else clause. e.g.

alt #green Success
    ' Success statements
else #red Failure
    ' Failure statements
end
...