UNPKG

504 BTypeScriptView Raw
1/** Returns the styles given options */
2export interface FlowChartStyleOptions {
3 arrowheadColor: string;
4 border2: string;
5 clusterBkg: string;
6 clusterBorder: string;
7 edgeLabelBackground: string;
8 fontFamily: string;
9 lineColor: string;
10 mainBkg: string;
11 nodeBorder: string;
12 nodeTextColor: string;
13 tertiaryColor: string;
14 textColor: string;
15 titleColor: string;
16}
17declare const getStyles: (options: FlowChartStyleOptions) => string;
18export default getStyles;