From a37aae3f7664939e97ad10f0806b4b9dd4b89497 Mon Sep 17 00:00:00 2001 From: pixelzoom Date: Fri, 24 Feb 2023 11:12:24 -0700 Subject: [PATCH] convert to TypeScript, https://github.com/phetsims/reactants-products-and-leftovers/issues/80 --- js/common/RPALColors.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/js/common/RPALColors.ts b/js/common/RPALColors.ts index 5f75748..0d29c0f 100644 --- a/js/common/RPALColors.ts +++ b/js/common/RPALColors.ts @@ -1,6 +1,5 @@ // Copyright 2014-2021, University of Colorado Boulder -// @ts-nocheck /** * Colors used throughout this simulation. * @@ -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 );