This commit is contained in:
martinbst 2025-05-01 13:51:25 +02:00
commit f12bdaa709
1 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ public class JPanelChessBoard extends JPanel {
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
this.setBackground(new Color(118, 150, 86));
this.setBackground(new Color(115, 149, 82));
if(pieceSelectorMode) {
g.drawImage(
spriteSheet,
@ -97,7 +97,7 @@ public class JPanelChessBoard extends JPanel {
float cellWidth = cellWidth();
float cellHeight = cellHeight();
g.setColor(new Color(238,238,210));
g.setColor(new Color(238,236,208));
for(int x=0; x<myGame.getWidth();x++) {
for (int y=0; y<myGame.getHeight(); y++) {
boolean isSelect = myGame.isSelected(x,y);