-
public final class IntKt
-
-
Method Summary
Modifier and Type Method Description final static StringtoRGBHexColor(Integer $self)Converts an Android ARGB color int to a CSS color string. -
-
Method Detail
-
toRGBHexColor
final static String toRGBHexColor(Integer $self)
Converts an Android ARGB color int to a CSS color string. Handles transparency properly:
Fully transparent (alpha = 0) -> "transparent"
Fully opaque (alpha = 255) -> "#RRGGBB"
Partially transparent -> "rgba(r, g, b, a)"
e.g. #113377, transparent, rgba(255, 0, 0, 0.5)
-
-
-
-