summaryrefslogtreecommitdiff
path: root/themes/blowfish/assets/lib/mermaid/diagrams/flowchart/styles.d.ts
blob: 73918ae8f5579dfbeba8cf063ed6f68ffe494683 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** 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;
}
declare const getStyles: (options: FlowChartStyleOptions) => string;
export default getStyles;