mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2024-12-22 21:42:30 -05:00
Change to a grayer shade
This commit is contained in:
parent
323c9f634e
commit
db0a0a2b9b
1 changed files with 2 additions and 2 deletions
|
@ -298,7 +298,7 @@ const _makeBackgroundGuideLayer = function (format) {
|
||||||
const vBackground = _makeBackgroundPaper(
|
const vBackground = _makeBackgroundPaper(
|
||||||
MAX_WORKSPACE_BOUNDS.width / CHECKERBOARD_SIZE,
|
MAX_WORKSPACE_BOUNDS.width / CHECKERBOARD_SIZE,
|
||||||
(MAX_WORKSPACE_BOUNDS.height / CHECKERBOARD_SIZE) + 1,
|
(MAX_WORKSPACE_BOUNDS.height / CHECKERBOARD_SIZE) + 1,
|
||||||
'#0062ff', 0.1);
|
'#D9E3F2', 0.55);
|
||||||
vBackground.position = CENTER;
|
vBackground.position = CENTER;
|
||||||
vBackground.scaling = new paper.Point(CHECKERBOARD_SIZE, CHECKERBOARD_SIZE);
|
vBackground.scaling = new paper.Point(CHECKERBOARD_SIZE, CHECKERBOARD_SIZE);
|
||||||
|
|
||||||
|
@ -311,7 +311,7 @@ const _makeBackgroundGuideLayer = function (format) {
|
||||||
const bitmapBackground = _makeBackgroundPaper(
|
const bitmapBackground = _makeBackgroundPaper(
|
||||||
ART_BOARD_WIDTH / CHECKERBOARD_SIZE,
|
ART_BOARD_WIDTH / CHECKERBOARD_SIZE,
|
||||||
ART_BOARD_HEIGHT / CHECKERBOARD_SIZE,
|
ART_BOARD_HEIGHT / CHECKERBOARD_SIZE,
|
||||||
'#0062ff', 0.1);
|
'#D9E3F2', 0.55);
|
||||||
bitmapBackground.position = CENTER;
|
bitmapBackground.position = CENTER;
|
||||||
bitmapBackground.scaling = new paper.Point(CHECKERBOARD_SIZE, CHECKERBOARD_SIZE);
|
bitmapBackground.scaling = new paper.Point(CHECKERBOARD_SIZE, CHECKERBOARD_SIZE);
|
||||||
bitmapBackground.guide = true;
|
bitmapBackground.guide = true;
|
||||||
|
|
Loading…
Reference in a new issue