18 lines
536 B
TypeScript
18 lines
536 B
TypeScript
|
|
import type { DiagramStylesProvider } from '../../diagram-api/types.js';
|
||
|
|
export interface WardleyStyleOptions {
|
||
|
|
backgroundColor?: string;
|
||
|
|
axisColor?: string;
|
||
|
|
axisTextColor?: string;
|
||
|
|
gridColor?: string;
|
||
|
|
componentFill?: string;
|
||
|
|
componentStroke?: string;
|
||
|
|
componentLabelColor?: string;
|
||
|
|
linkStroke?: string;
|
||
|
|
evolutionStroke?: string;
|
||
|
|
annotationStroke?: string;
|
||
|
|
annotationTextColor?: string;
|
||
|
|
annotationFill?: string;
|
||
|
|
}
|
||
|
|
export declare const styles: DiagramStylesProvider;
|
||
|
|
export default styles;
|