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

Commit

Permalink
change checkbutton colors for #36
Browse files Browse the repository at this point in the history
  • Loading branch information
5HT2 committed Feb 12, 2020
1 parent 8271c6f commit 6093aac
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,16 @@
/**
* Created by 086 on 4/08/2017.
*/
public class RootCheckButtonUI<T extends CheckButton> extends AbstractComponentUI<CheckButton> {
public class RootCheckButtonUI extends AbstractComponentUI<CheckButton> {

protected Color backgroundColour = new Color(200, 56, 56);
protected Color backgroundColourHover = new Color(255, 66, 66);
// SEARCHCOLOUR: CheckButton Colours
protected Color backgroundColour = new Color(67, 54, 191); // normal
protected Color backgroundColourHover = new Color(67, 54, 191); // light

protected Color idleColourNormal = new Color(200, 200, 200);
protected Color downColourNormal = new Color(190, 190, 190);
protected Color idleColourNormal = new Color(200, 200, 200); // lighter grey
protected Color downColourNormal = new Color(190, 190, 190); // light grey

protected Color idleColourToggle = new Color(250, 120, 120);
protected Color idleColourToggle = new Color(165, 158, 232); // lighter
protected Color downColourToggle = idleColourToggle.brighter();

@Override
Expand Down

0 comments on commit 6093aac

Please sign in to comment.