From 146e327830b550b50ae345f7c754a53edf035979 Mon Sep 17 00:00:00 2001 From: 0xboobface <0xboobface@gmail.com> Date: Sun, 25 Nov 2018 15:52:41 +0100 Subject: [PATCH] Add CSS dark theme for the application --- client/src/main/resources/dark.css | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 client/src/main/resources/dark.css diff --git a/client/src/main/resources/dark.css b/client/src/main/resources/dark.css new file mode 100644 index 00000000..a7af0985 --- /dev/null +++ b/client/src/main/resources/dark.css @@ -0,0 +1,7 @@ +.root { + -fx-base: #4d4d4d; + -fx-accent: #0096c9; + -fx-default-button: -fx-accent; + -fx-focus-color: -fx-accent; + -fx-control-inner-background-alt: derive(-fx-base, 95%); +} \ No newline at end of file