- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
19 lines
504 B
TypeScript
19 lines
504 B
TypeScript
/** 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;
|