Skip to content

Commit

Permalink
Rename from simColorProfileProperty to SimColors.js, see phetsims/sce…
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jul 28, 2021
1 parent bab92d1 commit 7563ef2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions js/view/BuildAFractionScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @author Jonathan Olson <[email protected]>
*/

import fractionsCommonColorProfile from '../../../fractions-common/js/common/view/fractionsCommonColorProfile.js';
import FractionsCommonColors from '../../../fractions-common/js/common/view/FractionsCommonColors.js';
import BuildingGameModel from '../../../fractions-common/js/game/model/BuildingGameModel.js';
import BuildingGameScreenView from '../../../fractions-common/js/game/view/BuildingGameScreenView.js';
import Screen from '../../../joist/js/Screen.js';
Expand All @@ -23,7 +23,7 @@ class BuildAFractionScreen extends Screen {
model => new BuildingGameScreenView( model ),
{
name: screenBuildAFractionString,
backgroundColorProperty: fractionsCommonColorProfile.otherScreenBackgroundProperty,
backgroundColorProperty: FractionsCommonColors.otherScreenBackgroundProperty,
homeScreenIcon: new ScreenIcon( BuildingGameScreenView.createUnmixedScreenIcon(), {
maxIconWidthProportion: 1,
maxIconHeightProportion: 1
Expand Down
4 changes: 2 additions & 2 deletions js/view/LabScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @author Jonathan Olson <[email protected]>
*/

import fractionsCommonColorProfile from '../../../fractions-common/js/common/view/fractionsCommonColorProfile.js';
import FractionsCommonColors from '../../../fractions-common/js/common/view/FractionsCommonColors.js';
import BuildingLabModel from '../../../fractions-common/js/lab/model/BuildingLabModel.js';
import BuildingLabScreenView from '../../../fractions-common/js/lab/view/BuildingLabScreenView.js';
import Screen from '../../../joist/js/Screen.js';
Expand All @@ -23,7 +23,7 @@ class LabScreen extends Screen {
model => new BuildingLabScreenView( model ),
{
name: screenLabString,
backgroundColorProperty: fractionsCommonColorProfile.otherScreenBackgroundProperty,
backgroundColorProperty: FractionsCommonColors.otherScreenBackgroundProperty,
homeScreenIcon: new ScreenIcon( BuildingLabScreenView.createMixedScreenIcon(), {
maxIconWidthProportion: 1,
maxIconHeightProportion: 1
Expand Down
4 changes: 2 additions & 2 deletions js/view/MixedNumbersScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @author Jonathan Olson <[email protected]>
*/

import fractionsCommonColorProfile from '../../../fractions-common/js/common/view/fractionsCommonColorProfile.js';
import FractionsCommonColors from '../../../fractions-common/js/common/view/FractionsCommonColors.js';
import BuildingGameModel from '../../../fractions-common/js/game/model/BuildingGameModel.js';
import BuildingGameScreenView from '../../../fractions-common/js/game/view/BuildingGameScreenView.js';
import Screen from '../../../joist/js/Screen.js';
Expand All @@ -23,7 +23,7 @@ class MixedNumbersScreen extends Screen {
model => new BuildingGameScreenView( model ),
{
name: screenMixedNumbersString,
backgroundColorProperty: fractionsCommonColorProfile.otherScreenBackgroundProperty,
backgroundColorProperty: FractionsCommonColors.otherScreenBackgroundProperty,
homeScreenIcon: new ScreenIcon( BuildingGameScreenView.createMixedScreenIcon(), {
maxIconWidthProportion: 1,
maxIconHeightProportion: 1
Expand Down

0 comments on commit 7563ef2

Please sign in to comment.