refactor: change default color in default config to gray
instead of white
(like the main instance)
This commit is contained in:
parent
a0e32ad146
commit
669ddb38f2
3 changed files with 3 additions and 3 deletions
|
@ -1 +1 @@
|
|||
1864
|
||||
1865
|
|
@ -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";
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue