Make Red the Color Placeholder (#516)

This commit is contained in:
joaoh1 2016-07-14 12:16:23 -03:00 committed by Tim Mickel
parent eb1ddddbb0
commit b9b8284c5d

View file

@ -190,21 +190,21 @@ Blockly.Block.prototype.data = null;
* @type {string}
* @private
*/
Blockly.Block.prototype.colour_ = '#000000';
Blockly.Block.prototype.colour_ = '#FF0000';
/**
* Secondary colour of the block in '#RRGGBB' format.
* @type {string}
* @private
*/
Blockly.Block.prototype.colourSecondary_ = '#000000';
Blockly.Block.prototype.colourSecondary_ = '#FF0000';
/**
* Tertiary colour of the block in '#RRGGBB' format.
* @type {string}
* @private
*/
Blockly.Block.prototype.colourTertiary_ = '#000000';
Blockly.Block.prototype.colourTertiary_ = '#FF0000';
/**
* Dispose of this block.