summaryrefslogtreecommitdiff
path: root/themes/blowfish/assets/lib/mermaid/diagrams/block/styles.d.ts
blob: 14b37692a6f0c6943126e229d7195869ea5fb7c0 (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 BlockChartStyleOptions {
    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: BlockChartStyleOptions) => string;
export default getStyles;