js2flowchart
Version:
> Why? While I've been working on [Under-the-hood-ReactJS](https://github.com/Bogdan-Lyashenko/Under-the-hood-ReactJS) I spent enormous amount of time on creating schemes. Each change in code or flowchart affects all entire scheme instantly, forcing you t
26 lines (23 loc) • 717 B
JavaScript
import { buildTheme } from './DefaultBaseTheme';
export const Colors = {
strokeColor: '#ccc',
defaultFillColor: '#fff',
textColor: '#ccc',
arrowFillColor: '#ccc',
rectangleFillColor: '#ede7f6',
rectangleDotFillColor: '#ede7f6',
functionFillColor: '#f1f8e9',
rootCircleFillColor: '#fffde7',
loopFillColor: '#e3f2fd',
conditionFillColor: '#f3e5f5',
destructedNodeFillColor: '#fff8e1',
classFillColor: '#e0f2f1',
debuggerFillColor: '#ffebee',
exportFillColor: '#e1f5fe',
throwFillColor: '#fce4ec',
tryFillColor: '#fff8e1',
objectFillColor: '#f9fbe7',
callFillColor: '#f9fbe7',
debugModeFillColor: '#666'
};
export default buildTheme(Colors);