Skip to content

Commit

Permalink
convert to TypeScript, #80
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed Feb 24, 2023
1 parent fc8d249 commit a37aae3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions js/common/RPALColors.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// Copyright 2014-2021, University of Colorado Boulder

// @ts-nocheck
/**
* Colors used throughout this simulation.
*
Expand All @@ -14,11 +13,11 @@ import reactantsProductsAndLeftovers from '../reactantsProductsAndLeftovers.js';
const DARK_BLUE = new Color( 51, 118, 196 );

const RPALColors = {
SCREEN_BACKGROUND: 'rgb(218,236,255)',
SCREEN_BACKGROUND: 'rgb( 218, 236, 255 )',
PANEL_FILL: DARK_BLUE,
BOX_STROKE: DARK_BLUE.withAlpha( 0.3 ),
BOX_FILL: 'white',
GAME_BUTTON: 'yellow'
GAME_BUTTON: 'yellow' //TODO https://github.com/phetsims/reactants-products-and-leftovers/issues/81 PhetColorScheme.BUTTON_YELLOW
};

reactantsProductsAndLeftovers.register( 'RPALColors', RPALColors );
Expand Down

0 comments on commit a37aae3

Please sign in to comment.