@ascentbv/ts-common - v1.0.123
    Preparing search index...

    Type Alias RGB

    Represents a color in Red-Green-Blue format. Each component ranges from 0 to 255.

    type RGB = {
        r: number;
        g: number;
        b: number;
    }
    Index

    Properties

    r g b

    Properties

    r: number
    g: number
    b: number