forked from RepoMirrors/kami-blue
changed ui element border color to 9B90FF (#37)
This commit is contained in:
parent
0e6a791101
commit
7eef7d9a84
|
@ -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());
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue