32 lines
553 B
JavaScript
32 lines
553 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
|
|
rect: function(width, height) {
|
|
return {
|
|
fill: '#343434',
|
|
activeFill: '#494949',
|
|
disabledFill: '#494949',
|
|
originX: 'center',
|
|
originY: 'center',
|
|
width: width || 1,
|
|
dynamicW: !width,
|
|
height: height || 1,
|
|
dynamicH: !height,
|
|
};
|
|
},
|
|
|
|
text: {
|
|
fill: '#ffffff',
|
|
disabledFill: '#999999',
|
|
fontFamily: 'breuer',
|
|
fontSize: 14,
|
|
originX: 'center',
|
|
originY: 'center',
|
|
},
|
|
|
|
cursor: 'pointer',
|
|
disabledCursor: 'default',
|
|
padding: 20,
|
|
};
|