mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-23 23:15:46 -06:00
19 lines
506 B
TypeScript
19 lines
506 B
TypeScript
|
/** 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;
|