Interface SystemColors

interface SystemColors {
    activetext: string;
    buttonborder: string;
    buttonface: string;
    buttontext: string;
    canvas: string;
    canvastext: string;
    field: string;
    fieldtext: string;
    graytext: string;
    highlight: string;
    highlighttext: string;
    linktext: string;
    mark: string;
    marktext: string;
    visitedtext: string;
}

Properties

activetext: string

Text in active links. For light backgrounds, traditionally red.

buttonborder: string

The base border color for push buttons.

buttonface: string

The face background color for push buttons.

buttontext: string

Text on push buttons.

canvas: string

Background of application content or documents.

canvastext: string

Text in application content or documents.

field: string

Background of input fields.

fieldtext: string

Text in input fields.

graytext: string

Disabled text. (Often, but not necessarily, gray.)

highlight: string

Background of selected items/text.

highlighttext: string

Text of selected items/text.

linktext: string

Text in non-active, non-visited links. For light backgrounds, traditionally blue.

mark: string

Background of text that has been specially marked (such as by the HTML mark element).

marktext: string

Text that has been specially marked (such as by the HTML mark element).

visitedtext: string

Text in visited links. For light backgrounds, traditionally purple.

Generated using TypeDoc