How to change font color of a composite state?

+2 votes
asked May 29, 2015 in To be sorted by bond007 (400 points)
edited May 29, 2015 by bond007

1 Answer

0 votes
answered Jun 12, 2015 by plantuml (295,000 points)
selected Jun 19, 2015 by bond007
 
Best answer

Hello,

Unfortunatly, you cannot... This is hardcoded to black.

However, we build a new beta https://dl.dropboxusercontent.com/u/13064071/plantuml.jar

In this beta, the parameter StateFontColor is now taken into account.

Example:

@startuml
skinparam shadowing false
skinparam StateFontColor white
skinparam StateBorderColor white
skinparam StateBackgroundColor gray
skinparam BackgroundColor gray
state "Any Page" as s1 {
   state "Using the text\nsearch input" as s2
}
@enduml
 
Thank for the report!
 
commented Jun 15, 2015 by bond007 (400 points)
Thank you very much! I got the required result with the beta:
https://www.dropbox.com/s/guzc50wzcl4ti9o/2015-06-16_01-29-08.png
...