refactor: change default color in default config to gray instead of white (like the main instance)

This commit is contained in:
Chayapak 2025-03-17 14:15:57 +07:00
parent a0e32ad146
commit 669ddb38f2
Signed by: ChomeNS
SSH key fingerprint: SHA256:0YoxhdyXsgbc0nfeB2N6FYE60mxMU7DS4uCUMaw2mvA
3 changed files with 3 additions and 3 deletions
build-number.txt
src/main
java/me/chayapak1/chomens_bot
resources

View file

@ -1 +1 @@
1864
1865

View file

@ -88,7 +88,7 @@ public class Configuration {
public static class ColorPalette {
public String primary = "yellow";
public String secondary = "gold";
public String defaultColor = "white";
public String defaultColor = "gray";
public String username = "gold";
public String uuid = "aqua";
public String string = "aqua";

View file

@ -59,7 +59,7 @@ music:
colorPalette:
primary: 'yellow'
secondary: 'gold'
defaultColor: 'white' # ig java has the `default` keyword so i need to use defaultColor
defaultColor: 'gray' # ig java has the `default` keyword so i need to use defaultColor
username: 'gold'
uuid: 'aqua'
string: 'aqua'