Interface InlineFormatColor

Colored text.

interface InlineFormatColor {
    end: number;
    hex: string;
    start: number;
    type: "color";
}

Hierarchy

  • InlineFormatBase
    • InlineFormatColor

Properties

Properties

end: number

The ending index of the formatting range (inclusive).

hex: string

The color to use, in standard hex format, with leading #.

start: number

The starting index of the formatting range (inclusive).

type