Change of background color

This commit is contained in:
gabrielshiraishi 2025-05-01 15:38:34 +02:00
parent 5c0095dbb2
commit 378ef72efc
1 changed files with 3 additions and 3 deletions

View File

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