Skip to content

Commit

Permalink
fix capitalisation
Browse files Browse the repository at this point in the history
  • Loading branch information
Rdeisenroth committed Jul 3, 2024
1 parent 7ded561 commit d2c7ca6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/fopbot/ColorProfile.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* @param outerBorderColorLight the color of the outer border in light mode
* @param outerBorderColorDark the color of the outer border in dark mode
* @param innerBorderColorLight the color of the inner border in light mode (not wall)
* @param InnerBorderColorDark the color of the inner border in dark mode (not wall)
* @param innerBorderColorDark the color of the inner border in dark mode (not wall)
* @param wallColorLight the color of {@link Wall}s in light mode
* @param wallColorDark the color of {@link Wall}s in dark mode
* @param coinColorLight the color of {@link Coin}s in light mode
Expand All @@ -36,7 +36,7 @@ public record ColorProfile(
Color outerBorderColorLight,
Color outerBorderColorDark,
Color innerBorderColorLight,
Color InnerBorderColorDark,
Color innerBorderColorDark,
Color wallColorLight,
Color wallColorDark,
Color coinColorLight,
Expand All @@ -55,7 +55,7 @@ public record ColorProfile(
.outerBorderColorLight(Color.BLACK)
.outerBorderColorDark(Color.WHITE)
.innerBorderColorLight(Color.GRAY)
.InnerBorderColorDark(new Color(60, 60, 60))
.innerBorderColorDark(new Color(60, 60, 60))
.wallColorLight(Color.BLACK)
.wallColorDark(Color.WHITE)
.coinColorLight(Color.RED)
Expand Down Expand Up @@ -110,7 +110,7 @@ public Color getOuterBorderColor() {
* @return the color of the inner border
*/
public Color getInnerBorderColor() {
return isDarkMode() ? InnerBorderColorDark : innerBorderColorLight;
return isDarkMode() ? innerBorderColorDark : innerBorderColorLight;
}

/**
Expand Down

0 comments on commit d2c7ca6

Please sign in to comment.