textShadow

fun StyleScope.textShadow(textShadow: TextShadow)(source)
fun StyleScope.textShadow(textShadow: TextShadow.Listable)(source)


fun StyleScope.textShadow(offsetX: CSSLengthNumericValue, offsetY: CSSLengthNumericValue, blurRadius: CSSLengthNumericValue? = null, color: CSSColorValue? = null)(source)

Deprecated

Use `textShadow(TextShadow.of(...))` instead

Replace with

textShadow(TextShadow.of(offsetX, offsetY, blurRadius, color))

fun StyleScope.textShadow(vararg shadows: TextShadow.Listable)(source)

Deprecated

Use `textShadow(TextShadow.list(...))` instead

Replace with

textShadow(TextShadow.list(*shadows))