Skip to content
This repository has been archived by the owner on Apr 22, 2021. It is now read-only.

Commit

Permalink
enum colors for #36
Browse files Browse the repository at this point in the history
  • Loading branch information
5HT2 committed Feb 11, 2020
1 parent f9902fa commit 257b454
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* Created by 086 on 8/08/2017.
*/
public class KamiEnumbuttonUI extends AbstractComponentUI<EnumButton> {
public class KamiEnumButtonUI extends AbstractComponentUI<EnumButton> {

RootSmallFontRenderer smallFontRenderer = new RootSmallFontRenderer();

Expand Down Expand Up @@ -48,7 +48,7 @@ public void renderComponent(EnumButton component, FontRenderer aa) {
float downscale = 1.1f;

glDisable(GL_TEXTURE_2D);
glColor3f(.59f, .05f, .11f);
glColor3f(.60f, .56f, 1.00f); // ENUM AND BIND COLORS
glBegin(GL_LINES);
{
glVertex2d(startX, height / downscale);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public KamiTheme() {
installUI(new KamiActiveModulesUI());
installUI(new KamiSettingsPanelUI());
installUI(new RootSliderUI());
installUI(new KamiEnumbuttonUI());
installUI(new KamiEnumButtonUI());
installUI(new RootColorizedCheckButtonUI());
installUI(new KamiUnboundSliderUI());

Expand Down

0 comments on commit 257b454

Please sign in to comment.