Update dark theme
This commit is contained in:
parent
7200400677
commit
b300a80c83
3 changed files with 12 additions and 10 deletions
2
pom.xml
2
pom.xml
|
@ -6,7 +6,7 @@
|
|||
|
||||
<groupId>loper</groupId>
|
||||
<artifactId>LogiLedus</artifactId>
|
||||
<version>1.1-SNAPSHOT</version>
|
||||
<version>1.2-SNAPSHOT</version>
|
||||
|
||||
<!-- <url></url> -->
|
||||
<description>
|
||||
|
|
|
@ -16,7 +16,7 @@ import java.util.Locale;
|
|||
import java.util.ResourceBundle;
|
||||
|
||||
public class MainFx extends Application {
|
||||
public static final String appVersion = "v1.1";
|
||||
public static final String appVersion = "v1.2";
|
||||
|
||||
private static boolean traySupport = true;
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
.button SVGPath{
|
||||
-fx-fill: #ebebeb;
|
||||
}
|
||||
.button, .toggle-button, .menu-button {
|
||||
.button, .toggle-button, .menu-button, .color-picker {
|
||||
-fx-background-color: #3c3f41;
|
||||
-fx-background-insets: 0 0 0 0, 0, 1, 2;
|
||||
-fx-background-radius: 2;
|
||||
|
@ -19,7 +19,7 @@
|
|||
-fx-text-fill: #ebebeb;
|
||||
//-fx-effect: dropshadow(three-pass-box, #dadada, 2, 0, 0, 0);
|
||||
}
|
||||
.menu-button:hover, .button:hover, .choice-box:hover, .menu-button:focused:hover, .button:focused:hover, .choice-box:focused:hover, .toggle-button:hover, .toggle-button:focused:hover{
|
||||
.menu-button:hover, .button:hover, .choice-box:hover, .menu-button:focused:hover, .button:focused:hover, .choice-box:focused:hover, .toggle-button:hover, .toggle-button:focused:hover, .color-picker:hover {
|
||||
-fx-background-color: #3c3f41;
|
||||
-fx-background-insets: 0 0 0 0, 0, 1, 2;
|
||||
-fx-background-radius: 2;
|
||||
|
@ -29,7 +29,7 @@
|
|||
-fx-text-fill: #ebebeb;
|
||||
//-fx-effect: dropshadow(three-pass-box, #4a81dd, 2, 0, 0, 0);
|
||||
}
|
||||
.menu-button:focused, .button:focused, .choice-box:focused, .toggle-button:focused{
|
||||
.menu-button:focused, .button:focused, .choice-box:focused, .toggle-button:focused, .color-picker:focused {
|
||||
-fx-background-color: #4b4e51;
|
||||
-fx-background-insets: 0 0 0 0, 0, 1, 2;
|
||||
-fx-background-radius: 2;
|
||||
|
@ -40,7 +40,9 @@
|
|||
//-fx-effect: dropshadow(three-pass-box, #dadada, 2, 0, 0, 0);
|
||||
}
|
||||
|
||||
.menu-button:pressed, .button:pressed, .menu-button:pressed:hover, .button:pressed:hover, .toggle-button:pressed, .toggle-button:pressed:hover{
|
||||
.menu-button:pressed, .button:pressed, .menu-button:pressed:hover, .button:pressed:hover,
|
||||
.toggle-button:pressed, .toggle-button:pressed:hover,
|
||||
.color-picker:pressed, .color-picker:pressed:hover{
|
||||
-fx-background-color: #3c3f41;
|
||||
-fx-background-insets: 0 0 0 0, 0, 1, 2;
|
||||
-fx-background-radius: 2;
|
||||
|
@ -246,11 +248,11 @@
|
|||
-fx-padding: 10;
|
||||
}
|
||||
/* -========================== Context menu =====================- */
|
||||
.menu-button .label {
|
||||
.menu-button .label, .color-picker .label {
|
||||
-fx-text-fill: #ebebeb;
|
||||
}
|
||||
|
||||
.menu-button .arrow {
|
||||
.menu-button .arrow, .color-picker .arrow {
|
||||
-fx-background-color: #ebebeb;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue