Skip to content

Commit

Permalink
Use lowercase for color profile, see #515
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jul 18, 2021
1 parent 29352aa commit 92bacf2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions js/intro/view/beaker/BeakerNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ import merge from '../../../../../phet-core/js/merge.js';
import Node from '../../../../../scenery/js/nodes/Node.js';
import Path from '../../../../../scenery/js/nodes/Path.js';
import LinearGradient from '../../../../../scenery/js/util/LinearGradient.js';
import FractionsCommonColorProfile from '../../../common/view/FractionsCommonColorProfile.js';
import fractionsCommonColorProfile from '../../../common/view/fractionsCommonColorProfile.js';
import fractionsCommon from '../../../fractionsCommon.js';

// constants
const EMPTY_BEAKER_COLOR = FractionsCommonColorProfile.emptyBeakerProperty;
const WATER_COLOR = FractionsCommonColorProfile.waterProperty;
const BEAKER_SHINE_COLOR = FractionsCommonColorProfile.beakerShineProperty;
const EMPTY_BEAKER_COLOR = fractionsCommonColorProfile.emptyBeakerProperty;
const WATER_COLOR = fractionsCommonColorProfile.waterProperty;
const BEAKER_SHINE_COLOR = fractionsCommonColorProfile.beakerShineProperty;

class BeakerNode extends Node {
/**
Expand Down

0 comments on commit 92bacf2

Please sign in to comment.