isoflow/src/utils/config.ts

21 lines
320 B
TypeScript
Raw Normal View History

2023-07-21 21:26:08 +00:00
import { customVars } from '../styles/theme';
export const DEFAULT_COLOR = customVars.diagramPalette.blue;
2023-07-27 13:51:18 +00:00
export const CONNECTOR_DEFAULTS = {
width: 4
};
export const GRID_DEFAULTS = {
size: {
x: 51,
y: 51
}
};
2023-07-21 20:29:55 +00:00
export const NODE_DEFAULTS = {
label: '',
2023-07-21 21:26:08 +00:00
labelHeight: 100,
color: DEFAULT_COLOR
2023-07-21 20:29:55 +00:00
};