Interface GridSurfaceStyle

interface GridSurfaceStyle {
    fill?: string;
    isDarkMode?: boolean;
    strokeFill?: string;
    strokeWidth?: number;
    text?: TextStyle;
}

Hierarchy (view full)

Properties

fill?: string
isDarkMode?: boolean

Indicates to the renderers that the colors being rendered are for dark mode.

Remarks

Renderers should invert colors if the colors being used are not specifically for dark mode.

strokeFill?: string
strokeWidth?: number
text?: TextStyle