diff --git a/src/main/resources/assets/jfx/main.css b/src/main/resources/assets/jfx/main.css index be8b562..ccd8f7d 100644 --- a/src/main/resources/assets/jfx/main.css +++ b/src/main/resources/assets/jfx/main.css @@ -1,12 +1,18 @@ Button.green { -fx-background-color: #56893b; } +Button.green:hover { + -fx-background-color: #72a157; +} Button.green:pressed { -fx-background-color: #457229; } Button.red { -fx-background-color: #ff4848; } +Button.red:hover { + -fx-background-color: #ff5e5e; +} Button.red:pressed { -fx-background-color: #9c2121; }