diff options
author | Aidan Ross <aross02@fairport.org> | 2023-05-16 22:48:41 -0400 |
---|---|---|
committer | Aidan Ross <aross02@fairport.org> | 2023-05-16 22:48:41 -0400 |
commit | 0ec11156c87afc066b1a6ef8f569aedad3a16ae5 (patch) | |
tree | 296fa3c77873608384ffc5a5d95f3d3e766b7e98 /src/fallTest/TButton.java | |
parent | fbd52c44150e463b2c24da2ff38f1acc11edac4d (diff) | |
download | NPEhero-0ec11156c87afc066b1a6ef8f569aedad3a16ae5.tar.gz NPEhero-0ec11156c87afc066b1a6ef8f569aedad3a16ae5.tar.bz2 NPEhero-0ec11156c87afc066b1a6ef8f569aedad3a16ae5.zip |
Overhaul of the look of the gui, I need to rename the boxes
Diffstat (limited to 'src/fallTest/TButton.java')
-rw-r--r-- | src/fallTest/TButton.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fallTest/TButton.java b/src/fallTest/TButton.java index 5998282..d18771f 100644 --- a/src/fallTest/TButton.java +++ b/src/fallTest/TButton.java @@ -6,6 +6,7 @@ import javafx.scene.effect.BlurType; import javafx.scene.effect.DropShadow; import javafx.scene.paint.Color; import javafx.scene.shape.Rectangle; +import javafx.scene.text.Text; import javafx.scene.paint.*; public class TButton extends Rectangle @@ -14,7 +15,7 @@ public class TButton extends Rectangle { super(); - Color newCol = new Color(c.darker().getRed(), c.darker().getGreen(), c.darker().getBlue(), 0.15); + Color newCol = new Color(c.darker().getRed(), c.darker().getGreen(), c.darker().getBlue(), 0.25); super.setFill(newCol); super.setWidth(a); super.setHeight(b); |