From 7563ef2e621fe8a6d9fe8885447eeec7baa2b601 Mon Sep 17 00:00:00 2001 From: samreid Date: Wed, 28 Jul 2021 13:31:58 -0600 Subject: [PATCH] Rename from simColorProfileProperty to SimColors.js, see https://github.com/phetsims/scenery-phet/issues/686 --- js/view/BuildAFractionScreen.js | 4 ++-- js/view/LabScreen.js | 4 ++-- js/view/MixedNumbersScreen.js | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/js/view/BuildAFractionScreen.js b/js/view/BuildAFractionScreen.js index 91f9873..ffb3b80 100644 --- a/js/view/BuildAFractionScreen.js +++ b/js/view/BuildAFractionScreen.js @@ -6,7 +6,7 @@ * @author Jonathan Olson */ -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'; @@ -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 diff --git a/js/view/LabScreen.js b/js/view/LabScreen.js index 76a24c9..6ed630b 100644 --- a/js/view/LabScreen.js +++ b/js/view/LabScreen.js @@ -6,7 +6,7 @@ * @author Jonathan Olson */ -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'; @@ -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 diff --git a/js/view/MixedNumbersScreen.js b/js/view/MixedNumbersScreen.js index a8433da..eb6ae88 100644 --- a/js/view/MixedNumbersScreen.js +++ b/js/view/MixedNumbersScreen.js @@ -6,7 +6,7 @@ * @author Jonathan Olson */ -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'; @@ -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