Fixed config for frames and added only frames to canvas

This commit is contained in:
Erik Tiekstra
2017-05-18 14:20:04 +02:00
parent 2acdcafe09
commit 15d54ec45a
6 changed files with 40 additions and 20 deletions
+4 -4
View File
@@ -3,14 +3,14 @@
module.exports = {
canvas: {
margin: 0,
margin: 5,
text: {
fill: '#ffffff',
activeFill: '#000000',
activeFill: '#ffffff',
},
rect: {
fill: '#444444',
activeFill: '#ffffff',
fill: '#000000',
activeFill: '#444444',
width: 100,
},
},
+27
View File
@@ -0,0 +1,27 @@
'use strict';
module.exports = {
default: {
fill: '#000000',
stroke: '#f31fb3',
width: 1,
height: 1,
},
image: {
fill: 'rgba(0,0,0,0.2)',
strokeWidth: 1,
},
black: {
fill: '#000000',
strokeWidth: 0,
},
white: {
fill: '#ffffff',
strokeWidth: 0,
},
};