HELP PLEASE The game board as it initially appears with the
HELP PLEASE
The game board as it initially appears, with the stark black and white squares, is a real eye-sore. Change the colors of the squares to something more palatable (e.g. perhaps a medium brown and a tan, as commonly used on chess/checker boards). Do not use the pre-defined Colors, like Color.gray. Create a Color by supplying the RGB (red, green, and blue) values.
Solution
This is small change required to supply a RGB color. Please find below the changes required:
for medium brown : new Color(165,42,42)
for tan : new Color(210,180,140)
--------------------------------------------
The color integrated full code is shown below:

