Update Theme.java

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

View File

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