blob: 1fe151b4648f81c00134d0d22dbda9af9745f55f (
plain)
1
2
3
4
5
6
7
8
9
10
|
// constants
export const canvasSize = 512;
export const freeformRenderSize = 300;
export const offsetDistanceY = freeformRenderSize + 400;
export const offsetX = 200;
export const newCollectionSize = 500;
export const activeColor = '#1976d2';
export const eraserColor = '#e1e9ec';
export const bgColor = '#f0f4f6';
|