@jsfkit/types
    Preparing search index...

    Type Alias ScRgbColor

    A colour in Microsoft's scRGB colour space.

    Equivalent to CSS srgb-linear colour space.

    type ScRgbColor = {
        blue: number;
        green: number;
        red: number;
        type: "scrgb";
    }
    Index

    Properties

    Properties

    blue: number

    Blue value as a percentage. Can be outside the range 0-100.

    green: number

    Green value as a percentage. Can be outside the range 0-100.

    red: number

    Red value as a percentage. Can be outside the range 0-100.

    type: "scrgb"