Package 

Class IntKt


  • 
    public final class IntKt
    
                        
    • Method Summary

      Modifier and Type Method Description
      final static String toRGBHexColor(Integer $self) Converts an Android ARGB color int to a CSS color string.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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)