Merge pull request #21 from Silent-Client/TEST2

Update Theme.java
This commit is contained in:
kirillsaint 2023-08-07 14:44:04 +06:00 committed by GitHub
commit bd5fa7ab89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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, 127);
return new Color(0, 0, 0, 160);
}
return new Color(20, 20, 20);
}