Changing the Vessel or Cylindrical Tank Stroke Color in Perspective

In Perspective, the Vessel & Cylindrical Tanks have the option to adjust the StrokeWidth, but not the StrokeColor. Is there a way to change the StrokeColor somehow? Default they appear to be a shade of grey, I am wanting to change to black.

I have bad news, I have good news, and I have more bad news.

Bad news:
We don't expose the stroke color directly as a prop and applying it through style isn't going to get you what you want.

Good news:
You can manage the stroke within the stylesheet.css resource available in versions 8.1.22 and newer with the following rule(s):

.ia_cylindricalTankComponent__tank, .ia_cylindricalTankComponent__liquid {
	stroke: #000000;
}

Screenshot 2024-02-23 at 10.18.13 AM

More bad news:
Note that I also applied this to the liquid piece as part of a shared rule. This could look a little funky because the liquid is overlayed on top of the actual container. If you split the shared rule into two separate rules, the liquid color will ALWAYS be used on top of the tank.

Shared rule, same color (not terrible):
Screenshot 2024-02-23 at 10.20.27 AM

Split rules, different colors (not great):
Screenshot 2024-02-23 at 10.20.47 AM