UNPKG

mermaid

Version:

Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.

25 lines (24 loc) 663 B
/** Returns the styles given options */ export interface FlowChartStyleOptions { arrowheadColor: string; border2: string; clusterBkg: string; clusterBorder: string; edgeLabelBackground: string; fontFamily: string; lineColor: string; mainBkg: string; nodeBorder: string; nodeTextColor: string; tertiaryColor: string; textColor: string; titleColor: string; strokeWidth: string; theme?: string; look?: string; THEME_COLOR_LIMIT?: number; borderColorArray?: string[]; bkgColorArray?: string[]; } declare const getStyles: (options: FlowChartStyleOptions) => string; export default getStyles;