[squeak-dev] The Trunk: System-mt.1011.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Apr 3 06:49:20 UTC 2018


Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.1011.mcz

==================== Summary ====================

Name: System-mt.1011
Author: mt
Time: 3 April 2018, 8:49:01.678205 am
UUID: a8e83753-cef1-a24e-b214-83fe53b2849b
Ancestors: System-mt.1010

Minor changes for a more distinguishable syntax highlighting in Monokai and Solarized UI themes.

=============== Diff against System-mt.1010 ===============

Item was changed:
  ----- Method: MonokaiTheme class>>addDarkSyntaxHighlighting: (in category 'instance creation') -----
  addDarkSyntaxHighlighting: theme
  	"self createDark apply."
+ 
  	theme
  		set: #color for: #TextAction to: self blue;
  
  		set: #default for: #SHTextStylerST80 to: {self foregroundColor};
  		set: #invalid for: #SHTextStylerST80 to: {self red};
  		set: #excessCode for: #SHTextStylerST80 to: {self red};
  		set: #comment for: #SHTextStylerST80 to: {self commentColor};
  		set: #unfinishedComment for: #SHTextStylerST80 to: {self red. TextEmphasis italic};
  		set: #'$' for: #SHTextStylerST80 to: {self red};
  		set: #character for: #SHTextStylerST80 to: {self numberColor};
  		set: #integer for: #SHTextStylerST80 to: {self numberColor};
  		set: #number for: #SHTextStylerST80 to: {self numberColor};	
  		set: #- for: #SHTextStylerST80 to: {self red};
+ 		set: #symbol for: #SHTextStylerST80 to: {self orange};	
+ 		set: #stringSymbol for: #SHTextStylerST80 to: {self orange};	
+ 		set: #literalArray for: #SHTextStylerST80 to: {self orange};
- 		set: #symbol for: #SHTextStylerST80 to: {self blue};	
- 		set: #stringSymbol for: #SHTextStylerST80 to: {self blue};	
- 		set: #literalArray for: #SHTextStylerST80 to: {self blue};
  		set: #string for: #SHTextStylerST80 to: {self stringColor. TextEmphasis normal};
  		set: #unfinishedString for: #SHTextStylerST80 to: {self red. TextEmphasis normal};
  		set: #assignment for: #SHTextStylerST80 to: {nil. TextEmphasis bold};
  		set: #ansiAssignment for: #SHTextStylerST80 to: {nil. TextEmphasis bold};
  		set: #literal for: #SHTextStylerST80 to: {nil. TextEmphasis italic};
  		set: #keyword for: #SHTextStylerST80 to: {self blue};
  		set: #binary for: #SHTextStylerST80 to: {self blue};	
  		set: #unary for: #SHTextStylerST80 to: {self blue};
  		set: #incompleteKeyword for: #SHTextStylerST80 to: {self foregroundColor. TextEmphasis underlined};
  		set: #incompleteBinary for: #SHTextStylerST80 to: {self foregroundColor. TextEmphasis underlined};	
  		set: #incompleteUnary for: #SHTextStylerST80 to: {self foregroundColor. TextEmphasis underlined};
  		set: #undefinedKeyword for: #SHTextStylerST80 to: {self red};
  		set: #undefinedBinary for: #SHTextStylerST80 to: {self red};	
  		set: #undefinedUnary for: #SHTextStylerST80 to: {self red};													
+ 		set: #patternKeyword for: #SHTextStylerST80 to: {nil};
+ 		set: #patternBinary for: #SHTextStylerST80 to: {nil};
+ 		set: #patternUnary for: #SHTextStylerST80 to: {nil};	
+ 		set: #self for: #SHTextStylerST80 to: {Color gray: 0.6};
+ 		set: #super for: #SHTextStylerST80 to: {Color gray: 0.6}; 
- 		set: #patternKeyword for: #SHTextStylerST80 to: {nil. TextEmphasis bold};
- 		set: #patternBinary for: #SHTextStylerST80 to: {nil. TextEmphasis bold};
- 		set: #patternUnary for: #SHTextStylerST80 to: {nil. TextEmphasis bold};	
- 		set: #self for: #SHTextStylerST80 to: {self red};
- 		set: #super for: #SHTextStylerST80 to: {self red}; 
  		set: #true for: #SHTextStylerST80 to: {self red};
  		set: #false for: #SHTextStylerST80 to: {self red};
  		set: #nil for: #SHTextStylerST80 to: {self red};
  		set: #thisContext for: #SHTextStylerST80 to: {self red};
  		set: #return for: #SHTextStylerST80 to: {self red};
  		set: #patternArg for: #SHTextStylerST80 to: {self blue};	
  		set: #methodArg for: #SHTextStylerST80 to: {self blue};
  		set: #blockPatternArg for: #SHTextStylerST80 to: {self blue};
  		set: #blockArg for: #SHTextStylerST80 to: {self blue};
  		set: #argument for: #SHTextStylerST80 to: {self blue};
  		set: #blockArgColon for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #leftParenthesis for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #rightParenthesis for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #leftParenthesis1 for: #SHTextStylerST80 to: {self green}; 
  		set: #rightParenthesis1 for: #SHTextStylerST80 to: {self green}; 
  		set: #leftParenthesis2 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #rightParenthesis2 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #leftParenthesis3 for: #SHTextStylerST80 to: {self red}; 
  		set: #rightParenthesis3 for: #SHTextStylerST80 to: {self red}; 
  		set: #leftParenthesis4 for: #SHTextStylerST80 to: {self green}; 
  		set: #rightParenthesis4 for: #SHTextStylerST80 to: {self green}; 
  		set: #leftParenthesis5 for: #SHTextStylerST80 to: {self orange}; 
  		set: #rightParenthesis5 for: #SHTextStylerST80 to: {self orange}; 
  		set: #leftParenthesis6 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #rightParenthesis6 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #leftParenthesis7 for: #SHTextStylerST80 to: {self blue}; 
  		set: #rightParenthesis7 for: #SHTextStylerST80 to: {self blue}; 
  		set: #blockStart for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #blockEnd for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #blockStart1 for: #SHTextStylerST80 to: {self green}; 
  		set: #blockEnd1 for: #SHTextStylerST80 to: {self green}; 
  		set: #blockStart2 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #blockEnd2 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #blockStart3 for: #SHTextStylerST80 to: {self red}; 
  		set: #blockEnd3 for: #SHTextStylerST80 to: {self red}; 
  		set: #blockStart4 for: #SHTextStylerST80 to: {self green}; 
  		set: #blockEnd4 for: #SHTextStylerST80 to: {self green}; 
  		set: #blockStart5 for: #SHTextStylerST80 to: {self orange}; 
  		set: #blockEnd5 for: #SHTextStylerST80 to: {self orange}; 
  		set: #blockStart6 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #blockEnd6 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #blockStart7 for: #SHTextStylerST80 to: {self blue}; 
  		set: #blockEnd7 for: #SHTextStylerST80 to: {self blue}; 																																																		
  		set: #arrayStart for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #arrayEnd for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #arrayStart1 for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #arrayEnd1 for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #byteArrayStart for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #byteArrayEnd for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #byteArrayStart1 for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #byteArrayEnd1 for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #leftBrace for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #rightBrace for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #cascadeSeparator for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #statementSeparator for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #externalCallType for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #externalCallTypePointerIndicator for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #primitiveOrExternalCallStart for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #primitiveOrExternalCallEnd for: #SHTextStylerST80 to: {self foregroundColor};
  		set: #methodTempBar for: #SHTextStylerST80 to: {self foregroundColor}; 
  		set: #blockTempBar for: #SHTextStylerST80 to: {self foregroundColor};
  		set: #blockArgsBar for: #SHTextStylerST80 to: {self foregroundColor};
  		set: #primitive for: #SHTextStylerST80 to: {self green. TextEmphasis bold};
  		set: #pragmaKeyword for: #SHTextStylerST80 to: {self green. TextEmphasis bold};
  		set: #pragmaUnary for: #SHTextStylerST80 to: {self green. TextEmphasis bold};
  		set: #pragmaBinary for: #SHTextStylerST80 to: {self green. TextEmphasis bold};									
  		set: #externalFunctionCallingConvention for: #SHTextStylerST80 to: {self green. TextEmphasis bold}; 
  		set: #module for: #SHTextStylerST80 to: {self green. TextEmphasis bold};
  		set: #blockTempVar for: #SHTextStylerST80 to: {self foregroundColor};
  		set: #blockPatternTempVar for: #SHTextStylerST80 to: {self foregroundColor};
  		set: #instVar for: #SHTextStylerST80 to: {self foregroundColor};
  		set: #workspaceVar for: #SHTextStylerST80 to: {self foregroundColor};
  		set: #undefinedIdentifier for: #SHTextStylerST80 to: {self red};
  		set: #incompleteIdentifier for: #SHTextStylerST80 to: {self foregroundColor. {TextEmphasis italic. TextEmphasis underlined}};
  		set: #tempVar for: #SHTextStylerST80 to: {self foregroundColor};
  		set: #patternTempVar for: #SHTextStylerST80 to: {self foregroundColor};
+ 		set: #poolConstant for: #SHTextStylerST80 to: {self classColor};
+ 		set: #classVar for: #SHTextStylerST80 to: {self classColor};
+ 		set: #globalVar for: #SHTextStylerST80 to: {self classColor}.
- 		set: #poolConstant for: #SHTextStylerST80 to: {self foregroundColor};
- 		set: #classVar for: #SHTextStylerST80 to: {self foregroundColor};
- 		set: #globalVar for: #SHTextStylerST80 to: {self foregroundColor}.
  		
  	"And the text differ"
  	theme	
  		set: #insertTextAttributes for: #TextDiffBuilder to: { TextColor color: self red };
  		set: #removeTextAttributes for: #TextDiffBuilder to: { TextEmphasis struckOut. TextColor color: self blue };
  		set: #normalTextAttributes for: #TextDiffBuilder to: { TextEmphasis normal }.!

Item was changed:
  ----- Method: SolarizedTheme class>>addDarkSyntaxHighlighting: (in category 'instance creation') -----
  addDarkSyntaxHighlighting: theme
  	"self createDark apply."
  	theme
  		set: #color for: #TextAction to: self blue;
  		
  		set: #default for: #SHTextStylerST80 to: {self darkContentPrimary};
  		set: #invalid for: #SHTextStylerST80 to: {self red};
  		set: #excessCode for: #SHTextStylerST80 to: {self red};
  		set: #comment for: #SHTextStylerST80 to: {self cyan};
  		set: #unfinishedComment for: #SHTextStylerST80 to: {self red. TextEmphasis italic};
  		set: #'$' for: #SHTextStylerST80 to: {self red};
  		set: #character for: #SHTextStylerST80 to: {self red};
  		set: #integer for: #SHTextStylerST80 to: {self red};
  		set: #number for: #SHTextStylerST80 to: {self red};	
  		set: #- for: #SHTextStylerST80 to: {self red};
+ 		set: #symbol for: #SHTextStylerST80 to: {self green};	
+ 		set: #stringSymbol for: #SHTextStylerST80 to: {self green};	
+ 		set: #literalArray for: #SHTextStylerST80 to: {self green};
- 		set: #symbol for: #SHTextStylerST80 to: {self blue};	
- 		set: #stringSymbol for: #SHTextStylerST80 to: {self blue};	
- 		set: #literalArray for: #SHTextStylerST80 to: {self blue};
  		set: #string for: #SHTextStylerST80 to: {self magenta. TextEmphasis normal};
  		set: #unfinishedString for: #SHTextStylerST80 to: {self red. TextEmphasis normal};
  		set: #assignment for: #SHTextStylerST80 to: {nil. TextEmphasis bold};
  		set: #ansiAssignment for: #SHTextStylerST80 to: {nil. TextEmphasis bold};
  		set: #literal for: #SHTextStylerST80 to: {nil. TextEmphasis italic};
  		set: #keyword for: #SHTextStylerST80 to: {self blue};
  		set: #binary for: #SHTextStylerST80 to: {self blue};	
  		set: #unary for: #SHTextStylerST80 to: {self blue};
  		set: #incompleteKeyword for: #SHTextStylerST80 to: {self darkContentPrimary. TextEmphasis underlined};
  		set: #incompleteBinary for: #SHTextStylerST80 to: {self darkContentPrimary. TextEmphasis underlined};	
  		set: #incompleteUnary for: #SHTextStylerST80 to: {self darkContentPrimary. TextEmphasis underlined};
  		set: #undefinedKeyword for: #SHTextStylerST80 to: {self red};
  		set: #undefinedBinary for: #SHTextStylerST80 to: {self red};	
  		set: #undefinedUnary for: #SHTextStylerST80 to: {self red};													
+ 		set: #patternKeyword for: #SHTextStylerST80 to: {nil};
+ 		set: #patternBinary for: #SHTextStylerST80 to: {nil};
+ 		set: #patternUnary for: #SHTextStylerST80 to: {nil};	
+ 		set: #self for: #SHTextStylerST80 to: {self darkContentPrimary};
+ 		set: #super for: #SHTextStylerST80 to: {self darkContentPrimary}; 
- 		set: #patternKeyword for: #SHTextStylerST80 to: {nil. TextEmphasis bold};
- 		set: #patternBinary for: #SHTextStylerST80 to: {nil. TextEmphasis bold};
- 		set: #patternUnary for: #SHTextStylerST80 to: {nil. TextEmphasis bold};	
- 		set: #self for: #SHTextStylerST80 to: {self red};
- 		set: #super for: #SHTextStylerST80 to: {self red}; 
  		set: #true for: #SHTextStylerST80 to: {self red};
  		set: #false for: #SHTextStylerST80 to: {self red};
  		set: #nil for: #SHTextStylerST80 to: {self red};
  		set: #thisContext for: #SHTextStylerST80 to: {self red};
  		set: #return for: #SHTextStylerST80 to: {self red};
  		set: #patternArg for: #SHTextStylerST80 to: {self blue};	
  		set: #methodArg for: #SHTextStylerST80 to: {self blue};
  		set: #blockPatternArg for: #SHTextStylerST80 to: {self blue};
  		set: #blockArg for: #SHTextStylerST80 to: {self blue};
  		set: #argument for: #SHTextStylerST80 to: {self blue};
  		set: #blockArgColon for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #leftParenthesis for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #rightParenthesis for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #leftParenthesis1 for: #SHTextStylerST80 to: {self green}; 
  		set: #rightParenthesis1 for: #SHTextStylerST80 to: {self green}; 
  		set: #leftParenthesis2 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #rightParenthesis2 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #leftParenthesis3 for: #SHTextStylerST80 to: {self red}; 
  		set: #rightParenthesis3 for: #SHTextStylerST80 to: {self red}; 
  		set: #leftParenthesis4 for: #SHTextStylerST80 to: {self green}; 
  		set: #rightParenthesis4 for: #SHTextStylerST80 to: {self green}; 
  		set: #leftParenthesis5 for: #SHTextStylerST80 to: {self orange}; 
  		set: #rightParenthesis5 for: #SHTextStylerST80 to: {self orange}; 
  		set: #leftParenthesis6 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #rightParenthesis6 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #leftParenthesis7 for: #SHTextStylerST80 to: {self blue}; 
  		set: #rightParenthesis7 for: #SHTextStylerST80 to: {self blue}; 
  		set: #blockStart for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #blockEnd for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #blockStart1 for: #SHTextStylerST80 to: {self green}; 
  		set: #blockEnd1 for: #SHTextStylerST80 to: {self green}; 
  		set: #blockStart2 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #blockEnd2 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #blockStart3 for: #SHTextStylerST80 to: {self red}; 
  		set: #blockEnd3 for: #SHTextStylerST80 to: {self red}; 
  		set: #blockStart4 for: #SHTextStylerST80 to: {self green}; 
  		set: #blockEnd4 for: #SHTextStylerST80 to: {self green}; 
  		set: #blockStart5 for: #SHTextStylerST80 to: {self orange}; 
  		set: #blockEnd5 for: #SHTextStylerST80 to: {self orange}; 
  		set: #blockStart6 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #blockEnd6 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #blockStart7 for: #SHTextStylerST80 to: {self blue}; 
  		set: #blockEnd7 for: #SHTextStylerST80 to: {self blue}; 																																																		
  		set: #arrayStart for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #arrayEnd for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #arrayStart1 for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #arrayEnd1 for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #byteArrayStart for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #byteArrayEnd for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #byteArrayStart1 for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #byteArrayEnd1 for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #leftBrace for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #rightBrace for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #cascadeSeparator for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #statementSeparator for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #externalCallType for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #externalCallTypePointerIndicator for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #primitiveOrExternalCallStart for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #primitiveOrExternalCallEnd for: #SHTextStylerST80 to: {self darkContentPrimary};
  		set: #methodTempBar for: #SHTextStylerST80 to: {self darkContentPrimary}; 
  		set: #blockTempBar for: #SHTextStylerST80 to: {self darkContentPrimary};
  		set: #blockArgsBar for: #SHTextStylerST80 to: {self darkContentPrimary};
  		set: #primitive for: #SHTextStylerST80 to: {self green. TextEmphasis bold};
  		set: #pragmaKeyword for: #SHTextStylerST80 to: {self green. TextEmphasis bold};
  		set: #pragmaUnary for: #SHTextStylerST80 to: {self green. TextEmphasis bold};
  		set: #pragmaBinary for: #SHTextStylerST80 to: {self green. TextEmphasis bold};									
  		set: #externalFunctionCallingConvention for: #SHTextStylerST80 to: {self green. TextEmphasis bold}; 
  		set: #module for: #SHTextStylerST80 to: {self green. TextEmphasis bold};
  		set: #blockTempVar for: #SHTextStylerST80 to: {self darkContentPrimary};
  		set: #blockPatternTempVar for: #SHTextStylerST80 to: {self darkContentPrimary};
  		set: #instVar for: #SHTextStylerST80 to: {self darkContentPrimary};
  		set: #workspaceVar for: #SHTextStylerST80 to: {self darkContentPrimary};
  		set: #undefinedIdentifier for: #SHTextStylerST80 to: {self red};
  		set: #incompleteIdentifier for: #SHTextStylerST80 to: {self darkContentPrimary. {TextEmphasis italic. TextEmphasis underlined}};
  		set: #tempVar for: #SHTextStylerST80 to: {self darkContentPrimary};
  		set: #patternTempVar for: #SHTextStylerST80 to: {self darkContentPrimary};
  		set: #poolConstant for: #SHTextStylerST80 to: {self darkContentPrimary};
  		set: #classVar for: #SHTextStylerST80 to: {self darkContentPrimary};
  		set: #globalVar for: #SHTextStylerST80 to: {self darkContentPrimary}.
  		
  	"And the text differ"
  	theme	
  		set: #insertTextAttributes for: #TextDiffBuilder to: { TextColor color: self red };
  		set: #removeTextAttributes for: #TextDiffBuilder to: { TextEmphasis struckOut. TextColor color: self blue };
  		set: #normalTextAttributes for: #TextDiffBuilder to: { TextEmphasis normal }.!

Item was changed:
  ----- Method: SolarizedTheme class>>addLightMenusAndDockingBars: (in category 'instance creation') -----
  addLightMenusAndDockingBars: theme
  	"self createLight apply."
  	theme
  		set: #borderWidth for: #MenuMorph to: 1;
  		set: #borderColor for: #MenuMorph to: self lightBackgroundHighlights;
  		set: #color for: #MenuMorph to: self lightBackground;
  		set: #titleTextColor for: #MenuMorph to: self lightContentEmphasizedMore;
  		set: #lineColor for: #MenuMorph to: self lightBackgroundHighlights;
  		set: #lineStyle for: #MenuMorph to: BorderStyle default;
  		set: #lineWidth for: #MenuMorph to: 1.
  		
  	theme
  		set: #textColor for: #MenuItemMorph to: self lightContentEmphasized;
  		set: #disabledTextColor for: #MenuItemMorph to: self lightContentSecondary;
+ 		set: #selectionColor for: #MenuItemMorph to: self lightBackgroundHighlights darker;
- 		set: #selectionColor for: #MenuItemMorph to: self lightBackgroundHighlights;
  		set: #selectionTextColor for: #MenuItemMorph to: self lightContentEmphasizedMore.
  		"set: #subMenuMarker for: #MenuItemMorph to: nil." "Use hard-coded default. See MenuItemMorph."
  		
  	"The world main docking bar."
  	theme
  		set: #color for: #DockingBarMorph to: self lightBackgroundHighlights;
  		set: #selectionColor for: #DockingBarItemMorph to: self lightContentSecondary;
  		set: #logoColor for: #TheWorldMainDockingBar to: self lightContentEmphasized;
  		set: #selectionLogoColor for: #TheWorldMainDockingBar to: self lightContentEmphasizedMore.!

Item was changed:
  ----- Method: SolarizedTheme class>>addLightScrollables: (in category 'instance creation') -----
  addLightScrollables: theme
  	"self createLight apply."
  
  	"Scroll bars"
  	theme
  		set: #thumbColor for: #ScrollBar to: self lightBackground;
  		set: #thumbBorderColor for: #ScrollBar to: self lightBackground;
  		set: #thumbBorderWidth for: #ScrollBar to: 1;
  		set: #thumbColorModifier for: #ScrollBar to: [ [:c | c adjustBrightness: -0.1] ];
  		set: #pagingAreaColorModifier for: #ScrollBar to: [ [:c | Color transparent ] ];
  		set: #borderColorModifier for: #ScrollBar to: [ [:c | c adjustBrightness: -0.1] ].
  	
  	"Scroll panes (includes generic stuff for list widgets, tree widgets, and text widgets."
  	theme
  		set: #borderWidth for: #ScrollPane to: 0;
  	"	set: #borderColor for: #ScrollPane to: Color transparent;"
  		set: #color for: #ScrollPane to: self lightBackground.
  		
  	"List widgets"
  	theme
  		set: #textColor for: #PluggableListMorph to: self lightContentEmphasized;
+ 		set: #selectionColor for: #PluggableListMorph to: self lightBackgroundHighlights darker;
- 		set: #selectionColor for: #PluggableListMorph to: self lightBackgroundHighlights;
  		set: #selectionTextColor for: #PluggableListMorph to: self lightContentEmphasizedMore;
  		derive: #multiSelectionColor for: #PluggableListMorph from: #PluggableListMorph at: #selectionColor do: [:c | c darker];
  		set: #filterColor for: #PluggableListMorph to: self yellow;
  		set: #filterTextColor for: #PluggableListMorph to: self lightBackground;
  		set: #preSelectionModifier for: #PluggableListMorph to: [ [:c | c darker alpha: 0.5 ] ];
  		set: #hoverSelectionModifier for: #PluggableListMorph to: [ [:c | c darker alpha: 0.5 ] ].
  		
  	"Tree widgets"
  	theme
  		set: #highlightTextColor for: #SimpleHierarchicalListMorph to: self yellow lighter lighter;
  		set: #lineColor for: #SimpleHierarchicalListMorph to: self lightContentSecondary.
  	
  	"Text widgets"
  	theme
  		set: #textColor for: #PluggableTextMorph to: self lightContentPrimary;
  		set: #caretColor for: #PluggableTextMorph to: self lightContentEmphasizedMore;
+ 		set: #selectionColor for: #PluggableTextMorph to: self lightBackgroundHighlights darker;
- 		set: #selectionColor for: #PluggableTextMorph to: self lightBackgroundHighlights;
  		set: #unfocusedSelectionModifier for: #PluggableTextMorph to: [ [:c | (Color r: 0.933 g: 0.909 b: 0.835) "light background highlights"] ];
  		set: #adornmentReadOnly for: #PluggableTextMorph to: self magenta;
  		set: #adornmentRefuse for: #PluggableTextMorph to: self cyan;
  		set: #adornmentConflict for: #PluggableTextMorph to: self red;
  		set: #adornmentDiff for: #PluggableTextMorph to: self green;
  		set: #adornmentNormalEdit for: #PluggableTextMorph to: self orange;
  		set: #adornmentDiffEdit for: #PluggableTextMorph to: self yellow.
  	theme
  		set: #balloonTextColor for: #PluggableTextMorphPlus to: self lightContentSecondary.!

Item was changed:
  ----- Method: SolarizedTheme class>>addLightSyntaxHighlighting: (in category 'instance creation') -----
  addLightSyntaxHighlighting: theme
  	"self createLight apply."
+ 
  	theme
  		set: #color for: #TextAction to: self blue;
  
  		set: #default for: #SHTextStylerST80 to: {self lightContentPrimary};
  		set: #invalid for: #SHTextStylerST80 to: {self red};
  		set: #excessCode for: #SHTextStylerST80 to: {self red};
  		set: #comment for: #SHTextStylerST80 to: {self cyan};
  		set: #unfinishedComment for: #SHTextStylerST80 to: {self red. TextEmphasis italic};
  		set: #'$' for: #SHTextStylerST80 to: {self red};
  		set: #character for: #SHTextStylerST80 to: {self red};
  		set: #integer for: #SHTextStylerST80 to: {self red};
  		set: #number for: #SHTextStylerST80 to: {self red};	
  		set: #- for: #SHTextStylerST80 to: {self red};
+ 		set: #symbol for: #SHTextStylerST80 to: {self green};	
+ 		set: #stringSymbol for: #SHTextStylerST80 to: {self green};	
+ 		set: #literalArray for: #SHTextStylerST80 to: {self green};
- 		set: #symbol for: #SHTextStylerST80 to: {self blue};	
- 		set: #stringSymbol for: #SHTextStylerST80 to: {self blue};	
- 		set: #literalArray for: #SHTextStylerST80 to: {self blue};
  		set: #string for: #SHTextStylerST80 to: {self magenta. TextEmphasis normal};
  		set: #unfinishedString for: #SHTextStylerST80 to: {self red. TextEmphasis normal};
  		set: #assignment for: #SHTextStylerST80 to: {nil. TextEmphasis bold};
  		set: #ansiAssignment for: #SHTextStylerST80 to: {nil. TextEmphasis bold};
  		set: #literal for: #SHTextStylerST80 to: {nil. TextEmphasis italic};
  		set: #keyword for: #SHTextStylerST80 to: {self blue};
  		set: #binary for: #SHTextStylerST80 to: {self blue};	
  		set: #unary for: #SHTextStylerST80 to: {self blue};
  		set: #incompleteKeyword for: #SHTextStylerST80 to: {self lightContentPrimary. TextEmphasis underlined};
  		set: #incompleteBinary for: #SHTextStylerST80 to: {self lightContentPrimary. TextEmphasis underlined};	
  		set: #incompleteUnary for: #SHTextStylerST80 to: {self lightContentPrimary. TextEmphasis underlined};
  		set: #undefinedKeyword for: #SHTextStylerST80 to: {self red};
  		set: #undefinedBinary for: #SHTextStylerST80 to: {self red};	
  		set: #undefinedUnary for: #SHTextStylerST80 to: {self red};													
  		set: #patternKeyword for: #SHTextStylerST80 to: {nil. TextEmphasis bold};
  		set: #patternBinary for: #SHTextStylerST80 to: {nil. TextEmphasis bold};
  		set: #patternUnary for: #SHTextStylerST80 to: {nil. TextEmphasis bold};	
+ 		set: #self for: #SHTextStylerST80 to: {self lightContentPrimary};
+ 		set: #super for: #SHTextStylerST80 to: {self lightContentPrimary}; 
- 		set: #self for: #SHTextStylerST80 to: {self red};
- 		set: #super for: #SHTextStylerST80 to: {self red}; 
  		set: #true for: #SHTextStylerST80 to: {self red};
  		set: #false for: #SHTextStylerST80 to: {self red};
  		set: #nil for: #SHTextStylerST80 to: {self red};
  		set: #thisContext for: #SHTextStylerST80 to: {self red};
  		set: #return for: #SHTextStylerST80 to: {self red};
  		set: #patternArg for: #SHTextStylerST80 to: {self blue};	
  		set: #methodArg for: #SHTextStylerST80 to: {self blue};
  		set: #blockPatternArg for: #SHTextStylerST80 to: {self blue};
  		set: #blockArg for: #SHTextStylerST80 to: {self blue};
  		set: #argument for: #SHTextStylerST80 to: {self blue};
  		set: #blockArgColon for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #leftParenthesis for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #rightParenthesis for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #leftParenthesis1 for: #SHTextStylerST80 to: {self green}; 
  		set: #rightParenthesis1 for: #SHTextStylerST80 to: {self green}; 
  		set: #leftParenthesis2 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #rightParenthesis2 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #leftParenthesis3 for: #SHTextStylerST80 to: {self red}; 
  		set: #rightParenthesis3 for: #SHTextStylerST80 to: {self red}; 
  		set: #leftParenthesis4 for: #SHTextStylerST80 to: {self green}; 
  		set: #rightParenthesis4 for: #SHTextStylerST80 to: {self green}; 
  		set: #leftParenthesis5 for: #SHTextStylerST80 to: {self orange}; 
  		set: #rightParenthesis5 for: #SHTextStylerST80 to: {self orange}; 
  		set: #leftParenthesis6 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #rightParenthesis6 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #leftParenthesis7 for: #SHTextStylerST80 to: {self blue}; 
  		set: #rightParenthesis7 for: #SHTextStylerST80 to: {self blue}; 
  		set: #blockStart for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #blockEnd for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #blockStart1 for: #SHTextStylerST80 to: {self green}; 
  		set: #blockEnd1 for: #SHTextStylerST80 to: {self green}; 
  		set: #blockStart2 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #blockEnd2 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #blockStart3 for: #SHTextStylerST80 to: {self red}; 
  		set: #blockEnd3 for: #SHTextStylerST80 to: {self red}; 
  		set: #blockStart4 for: #SHTextStylerST80 to: {self green}; 
  		set: #blockEnd4 for: #SHTextStylerST80 to: {self green}; 
  		set: #blockStart5 for: #SHTextStylerST80 to: {self orange}; 
  		set: #blockEnd5 for: #SHTextStylerST80 to: {self orange}; 
  		set: #blockStart6 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #blockEnd6 for: #SHTextStylerST80 to: {self magenta}; 
  		set: #blockStart7 for: #SHTextStylerST80 to: {self blue}; 
  		set: #blockEnd7 for: #SHTextStylerST80 to: {self blue}; 																																																		
  		set: #arrayStart for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #arrayEnd for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #arrayStart1 for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #arrayEnd1 for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #byteArrayStart for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #byteArrayEnd for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #byteArrayStart1 for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #byteArrayEnd1 for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #leftBrace for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #rightBrace for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #cascadeSeparator for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #statementSeparator for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #externalCallType for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #externalCallTypePointerIndicator for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #primitiveOrExternalCallStart for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #primitiveOrExternalCallEnd for: #SHTextStylerST80 to: {self lightContentPrimary};
  		set: #methodTempBar for: #SHTextStylerST80 to: {self lightContentPrimary}; 
  		set: #blockTempBar for: #SHTextStylerST80 to: {self lightContentPrimary};
  		set: #blockArgsBar for: #SHTextStylerST80 to: {self lightContentPrimary};
  		set: #primitive for: #SHTextStylerST80 to: {self green. TextEmphasis bold};
  		set: #pragmaKeyword for: #SHTextStylerST80 to: {self green. TextEmphasis bold};
  		set: #pragmaUnary for: #SHTextStylerST80 to: {self green. TextEmphasis bold};
  		set: #pragmaBinary for: #SHTextStylerST80 to: {self green. TextEmphasis bold};									
  		set: #externalFunctionCallingConvention for: #SHTextStylerST80 to: {self green. TextEmphasis bold}; 
  		set: #module for: #SHTextStylerST80 to: {self green. TextEmphasis bold};
  		set: #blockTempVar for: #SHTextStylerST80 to: {self lightContentPrimary};
  		set: #blockPatternTempVar for: #SHTextStylerST80 to: {self lightContentPrimary};
  		set: #instVar for: #SHTextStylerST80 to: {self lightContentPrimary};
  		set: #workspaceVar for: #SHTextStylerST80 to: {self lightContentPrimary};
  		set: #undefinedIdentifier for: #SHTextStylerST80 to: {self red};
  		set: #incompleteIdentifier for: #SHTextStylerST80 to: {self lightContentPrimary. {TextEmphasis italic. TextEmphasis underlined}};
  		set: #tempVar for: #SHTextStylerST80 to: {self lightContentPrimary};
  		set: #patternTempVar for: #SHTextStylerST80 to: {self lightContentPrimary};
  		set: #poolConstant for: #SHTextStylerST80 to: {self lightContentPrimary};
  		set: #classVar for: #SHTextStylerST80 to: {self lightContentPrimary};
  		set: #globalVar for: #SHTextStylerST80 to: {self lightContentPrimary}.
  		
  	"And the text differ"
  	theme	
  		set: #insertTextAttributes for: #TextDiffBuilder to: { TextColor color: self red };
  		set: #removeTextAttributes for: #TextDiffBuilder to: { TextEmphasis struckOut. TextColor color: self blue };
  		set: #normalTextAttributes for: #TextDiffBuilder to: { TextEmphasis normal }.!

Item was changed:
+ ----- Method: SolarizedTheme class>>darkSelectionColor (in category 'colors by purpose') -----
- ----- Method: SolarizedTheme class>>darkSelectionColor (in category 'as yet unclassified') -----
  darkSelectionColor
  	^ self base01 darker!

Item was changed:
+ ----- Method: SolarizedTheme class>>darkSelectionTextColor (in category 'colors by purpose') -----
- ----- Method: SolarizedTheme class>>darkSelectionTextColor (in category 'as yet unclassified') -----
  darkSelectionTextColor
  	^ self base2!



More information about the Squeak-dev mailing list