From 900c7e068b69d9a4224f99934d9b92a0593a4a95 Mon Sep 17 00:00:00 2001 From: jmoenig Date: Fri, 11 Jul 2014 12:34:37 +0200 Subject: make the color of the %pause symbol more yellowish --- blocks.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'blocks.js') diff --git a/blocks.js b/blocks.js index f02001b..61d8b01 100644 --- a/blocks.js +++ b/blocks.js @@ -155,7 +155,7 @@ DialogBoxMorph, BlockInputFragmentMorph, PrototypeHatBlockMorph, Costume*/ // Global stuff //////////////////////////////////////////////////////// -modules.blocks = '2014-July-08'; +modules.blocks = '2014-July-11'; var SyntaxElementMorph; @@ -1271,7 +1271,7 @@ SyntaxElementMorph.prototype.labelPart = function (spec) { case '%pause': part = new SymbolMorph('pause'); part.size = this.fontSize; - part.color = new Color(160, 80, 0); + part.color = new Color(255, 220, 0); part.isProtectedLabel = true; // doesn't participate in zebraing part.shadowColor = this.color.darker(this.labelContrast); part.shadowOffset = MorphicPreferences.isFlat ? -- cgit v1.3.1