hosanna-ui-docs - v0.9.0
    Preparing search index...

    Represents a color in the RGBA color space.

    interface RGBAColor {
        alpha: number;
        blue: number;
        green: number;
        red: number;
    }
    Index

    Properties

    Properties

    alpha: number

    The alpha (transparency) component of the color, ranging from 0 to 1.

    blue: number

    The blue component of the color, ranging from 0 to 255.

    green: number

    The green component of the color, ranging from 0 to 255.

    red: number

    The red component of the color, ranging from 0 to 255.