43 lines
979 B
Java
43 lines
979 B
Java
|
package dev.resent.module;
|
||
|
|
||
|
import dev.resent.module.impl.misc.HUD;
|
||
|
import dev.resent.util.render.Color;
|
||
|
import dev.resent.util.render.RainbowUtil;
|
||
|
|
||
|
public class Theme {
|
||
|
|
||
|
public static int getFontColor(int id){
|
||
|
return getFontColor(id, 255);
|
||
|
}
|
||
|
|
||
|
public static int getFontColor(int id, int opacity){
|
||
|
switch(id){
|
||
|
case 1:
|
||
|
return Color.white.getRGB();
|
||
|
case 2:
|
||
|
return Color.black.getRGB();
|
||
|
case 3:
|
||
|
return Color.white.getGreen();
|
||
|
case 50:
|
||
|
return RainbowUtil.getRainbow(4f, 0.8f, 0.85f);
|
||
|
}
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
public static int getId(){
|
||
|
switch(HUD.theme.getValue()){
|
||
|
case "Classic":
|
||
|
return 1;
|
||
|
case "Light":
|
||
|
return 2;
|
||
|
case "Dark":
|
||
|
return 3;
|
||
|
case "Rainbow":
|
||
|
return 50;
|
||
|
|
||
|
}
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
}
|