Skip to content

Commit

Permalink
Add Namespace parameter to ProfileColorProperty constructor, see phet…
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Aug 20, 2021
1 parent 4666e13 commit f56a139
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/common/NLDColors.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import ProfileColorProperty from '../../../scenery/js/util/ProfileColorProperty.
import numberLineDistance from '../numberLineDistance.js';

const NLDColors = {
genericScreenBackgroundColorProperty: new ProfileColorProperty( 'genericBackground', {
genericScreenBackgroundColorProperty: new ProfileColorProperty( numberLineDistance, 'genericBackground', {
default: 'rgb( 245, 255, 254 )'
} ),
exploreScreenBackgroundColorProperty: new ProfileColorProperty( 'exploreBackground', {
exploreScreenBackgroundColorProperty: new ProfileColorProperty( numberLineDistance, 'exploreBackground', {
default: 'rgb( 254, 247, 233 )'
} )
};
Expand Down

0 comments on commit f56a139

Please sign in to comment.