Source set: Common
public class RichTooltipColors(
public val containerColor: Color,
public val contentColor: Color,
public val titleContentColor: Color,
public val actionContentColor: Color,
)
Functions
copy
Source set: Common
public fun copy(
containerColor: Color = this.containerColor,
contentColor: Color = this.contentColor,
titleContentColor: Color = this.titleContentColor,
actionContentColor: Color = this.actionContentColor,
): RichTooltipColors
Returns a copy of this RichTooltipColors, optionally overriding some of the values. This uses the Color.Unspecified to mean “use the value from the source”