Merge pull request #1083 from fsih/bumpGridOpacity

Bump grid opacity
This commit is contained in:
DD Liu 2020-06-02 11:45:10 -04:00 committed by GitHub
commit cfe04ae548
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -298,7 +298,7 @@ const _makeBackgroundGuideLayer = function (format) {
const vBackground = _makeBackgroundPaper(
MAX_WORKSPACE_BOUNDS.width / CHECKERBOARD_SIZE,
(MAX_WORKSPACE_BOUNDS.height / CHECKERBOARD_SIZE) + 1,
'#0062ff', 0.05);
'#D9E3F2', 0.55);
vBackground.position = CENTER;
vBackground.scaling = new paper.Point(CHECKERBOARD_SIZE, CHECKERBOARD_SIZE);
@ -311,7 +311,7 @@ const _makeBackgroundGuideLayer = function (format) {
const bitmapBackground = _makeBackgroundPaper(
ART_BOARD_WIDTH / CHECKERBOARD_SIZE,
ART_BOARD_HEIGHT / CHECKERBOARD_SIZE,
'#0062ff', 0.05);
'#D9E3F2', 0.55);
bitmapBackground.position = CENTER;
bitmapBackground.scaling = new paper.Point(CHECKERBOARD_SIZE, CHECKERBOARD_SIZE);
bitmapBackground.guide = true;