-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Saurabh Totey
authored and
Saurabh Totey
committed
Jul 19, 2021
1 parent
a5ac52f
commit 1be4c48
Showing
3 changed files
with
26 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Copyright 2021, University of Colorado Boulder | ||
|
||
/** | ||
* The color profile for this sim. | ||
* | ||
* @author Saurabh Totey | ||
*/ | ||
|
||
import ProfileColorProperty from '../../../scenery/js/util/ProfileColorProperty.js'; | ||
import numberLineDistance from '../numberLineDistance.js'; | ||
|
||
const NLDColorProfile = { | ||
genericScreenBackgroundColorProperty: new ProfileColorProperty( 'genericBackground', { | ||
default: 'rgb( 245, 255, 254 )' | ||
} ), | ||
exploreScreenBackgroundColorProperty: new ProfileColorProperty( 'exploreBackground', { | ||
default: 'rgb( 254, 247, 233 )' | ||
} ) | ||
}; | ||
|
||
numberLineDistance.register( 'NLDColorProfile', NLDColorProfile ); | ||
export default NLDColorProfile; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1be4c48
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#48