Interface IModelDecorationOverviewRulerOptions

Options for rendering a model decoration in the overview ruler.

interface IModelDecorationOverviewRulerOptions {
    color: string | ThemeColor;
    darkColor?: string | ThemeColor;
    position: OverviewRulerLane;
}

Hierarchy (view full)

Properties

color: string | ThemeColor

CSS color to render. e.g.: rgba(100, 100, 100, 0.5) or a color from the color registry

darkColor?: string | ThemeColor

CSS color to render. e.g.: rgba(100, 100, 100, 0.5) or a color from the color registry

The position in the overview ruler.