PlantUML supports a hexadecimal color code sequence for declared “participants”. LucidChart UML sequence diagrams don’t seem to support this.
PlantUML specification:
https://plantuml.com/sequence-diagram
PlantUML declared like this should work as expected, but LucidChart is throwing an error on the hexadecimal color codes:
```
@startuml
participant VBO as "VBO" #ffffff
participant POS as "POS UI" #bbbbff
participant HAL as "HAL" #ffffff
participant UPA as "UPA" #ffccaa
participant PG as "Payment Gateway" #ffffff
autonumber
VBO -> POS: Request
POS -> HAL: Request
HAL -> UPA: Request
UPA -> PG: Request
PG --> UPA: Response
UPA --> HAL: Response
HAL --> POS: Response
POS --> VBO: Response
@enduml
```
Try it out here: https://www.plantuml.com/
Reference to Lucid’s markup guide: