@@ -597,7 +597,7 @@ public void actionPerformed(ActionEvent arg0) {
597597 btnSenseColor .setForeground (JColorChooser .showDialog (btnSenseColor , "Select an Output Color" , btnSenseColor .getForeground ()));
598598 }
599599 });
600- btnSenseColor .setForeground (Color . BLUE );
600+ btnSenseColor .setForeground (new Color ( 0 , 0 , 255 ) );
601601 sl_contentPane .putConstraint (SpringLayout .WEST , btnSenseColor , 50 , SpringLayout .WEST , contentPane );
602602 contentPane .add (btnSenseColor );
603603
@@ -607,7 +607,7 @@ public void actionPerformed(ActionEvent e) {
607607 btnAntiColor .setForeground (JColorChooser .showDialog (btnAntiColor , "Select an Output Color" , btnAntiColor .getForeground ()));
608608 }
609609 });
610- btnAntiColor .setForeground (Color . RED );
610+ btnAntiColor .setForeground (new Color ( 255 , 0 , 0 ) );
611611 sl_contentPane .putConstraint (SpringLayout .NORTH , btnAntiColor , 0 , SpringLayout .NORTH , btnSenseColor );
612612 sl_contentPane .putConstraint (SpringLayout .WEST , btnAntiColor , 75 , SpringLayout .EAST , btnSenseColor );
613613 contentPane .add (btnAntiColor );
@@ -619,7 +619,7 @@ public void actionPerformed(ActionEvent e) {
619619 }
620620 });
621621 btnCombinedColor .setEnabled (false );
622- btnCombinedColor .setForeground (new Color (0 , 100 , 0 ));
622+ btnCombinedColor .setForeground (new Color (0 , 0 , 0 ));
623623 sl_contentPane .putConstraint (SpringLayout .NORTH , btnCombinedColor , 0 , SpringLayout .NORTH , btnSenseColor );
624624 sl_contentPane .putConstraint (SpringLayout .WEST , btnCombinedColor , 75 , SpringLayout .EAST , btnAntiColor );
625625 contentPane .add (btnCombinedColor );
0 commit comments