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