changed ui element border color to 9B90FF (#37)

This commit is contained in:
blockparole 2019-10-30 23:14:45 +01:00 committed by Bella
parent 0e6a791101
commit 7eef7d9a84
3 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ public class KamiFrameUI<T extends Frame> extends AbstractComponentUI<Frame> {
glColor4f(.17f,.17f,.18f,.9f);
RenderHelper.drawFilledRectangle(0,0,component.getWidth(),component.getHeight());
glColor3f(.59f,.05f,.11f);
glColor3f(.60f,.56f,1.00f);
glLineWidth(1.5f);
RenderHelper.drawRectangle(0,0,component.getWidth(),component.getHeight());

View File

@ -73,7 +73,7 @@ public class RadarUI extends AbstractComponentUI<Radar> {
GL11.glLineWidth(1.8f);
// glColor4f(1,1,1,1f);
glColor3f(.59f,.05f,.11f);
glColor3f(.60f,.56f,1.00f);
GL11.glEnable(GL_LINE_SMOOTH);
RenderHelper.drawCircleOutline(0,0,radius);
GL11.glDisable(GL_LINE_SMOOTH);

View File

@ -82,7 +82,7 @@ public class TabGuiUI extends AbstractComponentUI<TabGUI> {
if (updatelerp)
tab.lerpSelectY = tab.lerpSelectY + ((tab.selected*10)-tab.lerpSelectY) * difference * .02f;
glColor3f(.59f,.05f,.11f);
glColor3f(.60f,.56f,1.00f);
GL11.glBegin(GL11.GL_QUADS);
{
GL11.glVertex2d(0,tab.lerpSelectY);