Update Theme.java

This commit is contained in:
kirillsaint 2023-08-07 14:43:45 +06:00
parent 136ef1e222
commit 64aa4db96c
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ import java.awt.*;
public class Theme { public class Theme {
public static Color backgroundColor() { public static Color backgroundColor() {
if(Client.getInstance().getGlobalSettings() != null && Client.getInstance().getGlobalSettings().isLite()) { if(Client.getInstance().getGlobalSettings() != null && Client.getInstance().getGlobalSettings().isLite()) {
return new Color(0, 0, 0, 127); return new Color(0, 0, 0, 160);
} }
return new Color(20, 20, 20); return new Color(20, 20, 20);
} }