Hello,
I’d like to have 2 different colors to use for clock signals in the timing diagram.
Doing something like that gives a syntax error:
@startuml example
<style>
timingDiagram {
.red {
LineColor red
}
.yellow {
LineColor yellow
}
}
</style>
clock "Clock1" as clock1 <<red>> with period 5000 pulse 1
clock "Clock2" as clock2 <<yellow>> with period 20000 pulse 1
@enduml
This would be nice to have for example one color per clock domain.
Thanks.