LocalDefaultColor
CompositionLocal for providing the default IsoColor applied to shapes that do not specify an explicit color.
Override with androidx.compose.runtime.CompositionLocalProvider to change the default for an entire subtree:
CompositionLocalProvider(LocalDefaultColor provides IsoColor.GREEN) {
IsometricScene { Shape(geometry = Prism(Point.ORIGIN)) } // renders green
}Content copied to clipboard
Defaults to Material Blue (IsoColor(33, 150, 243)).