Interface DecorationOverviewRulerOptions

interface DecorationOverviewRulerOptions {
    color: undefined | string | {
        id: string;
    };
    darkColor?: string | {
        id: string;
    };
    position: OverviewRulerLane;
}

Hierarchy (view full)

Properties

color: undefined | string | {
    id: string;
}

color of the decoration in the overview ruler. use rgba values to play well with other decorations.

Type declaration

  • id: string
darkColor?: string | {
    id: string;
}

The color to use in dark themes. Will be favored over color except in light themes.

Type declaration

  • id: string

position in the overview ruler.