More dark theme WIP
All checks were successful
Pull Request / build (pull_request) Successful in 3m22s
All checks were successful
Pull Request / build (pull_request) Successful in 3m22s
This commit is contained in:
parent
ee989b8997
commit
6ebdf4051c
@ -66,7 +66,7 @@ class WillowApplication : Application() {
|
|||||||
val root = fxmlLoader.load(javaClass.getResourceAsStream("/fxml/main.fxml")) as BorderPane
|
val root = fxmlLoader.load(javaClass.getResourceAsStream("/fxml/main.fxml")) as BorderPane
|
||||||
|
|
||||||
val primaryScene = Scene(root, WINDOW_WIDTH, WINDOW_HEIGHT)
|
val primaryScene = Scene(root, WINDOW_WIDTH, WINDOW_HEIGHT)
|
||||||
// primaryScene.stylesheets.add(javaClass.getResource("/css/dark.css")?.toExternalForm()!!)
|
// primaryScene.stylesheets.add(javaClass.getResource("/css/dark.css")?.toExternalForm()!!)
|
||||||
|
|
||||||
primaryStage.apply {
|
primaryStage.apply {
|
||||||
title = WINDOW_TITLE
|
title = WINDOW_TITLE
|
||||||
|
@ -8,6 +8,8 @@ https://openjfx.io/javadoc/23/javafx.graphics/javafx/scene/doc-files/cssref.html
|
|||||||
willow-foreground: #dfdfdf;
|
willow-foreground: #dfdfdf;
|
||||||
|
|
||||||
-fx-base: willow-background;
|
-fx-base: willow-background;
|
||||||
|
-fx-accent: #5c7654;
|
||||||
|
-fx-focus-color: #3e8f25;
|
||||||
|
|
||||||
-fx-background-color: willow-background;
|
-fx-background-color: willow-background;
|
||||||
-fx-text-fill: willow-foreground;
|
-fx-text-fill: willow-foreground;
|
||||||
@ -27,10 +29,10 @@ https://openjfx.io/javadoc/23/javafx.graphics/javafx/scene/doc-files/cssref.html
|
|||||||
|
|
||||||
.list-cell:even {
|
.list-cell:even {
|
||||||
-fx-text-fill: willow-foreground;
|
-fx-text-fill: willow-foreground;
|
||||||
-fx-background-color: #1e1e1e;
|
-fx-background: #1e1e1e;
|
||||||
}
|
}
|
||||||
|
|
||||||
.list-cell:odd {
|
.list-cell:odd {
|
||||||
-fx-text-fill: willow-foreground;
|
-fx-text-fill: willow-foreground;
|
||||||
-fx-background-color: #292929;
|
-fx-background: #292929;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user