From 88f07fb6c646e0ece561658d99348d9b46328688 Mon Sep 17 00:00:00 2001 From: Michael-Jouanneau Date: Mon, 14 Nov 2016 20:29:05 +0100 Subject: [PATCH] Changed Things --- src/assets/style/dark-theme.css | 23 ++++++++++----- src/assets/style/light-theme.css | 48 ++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+), 7 deletions(-) create mode 100644 src/assets/style/light-theme.css diff --git a/src/assets/style/dark-theme.css b/src/assets/style/dark-theme.css index dfcd99c..34b9003 100644 --- a/src/assets/style/dark-theme.css +++ b/src/assets/style/dark-theme.css @@ -1,11 +1,20 @@ #pane { - -fx-background-color: rgb(62, 62, 62); + -fx-background-color: rgba(7, 4, 20, 0.85); } #rectangle { - -fx-fill: #1a1a1a; + -fx-fill: #050517; } + +#rectangle-1 { + -fx-fill: #080920; +} + +#rectangle-2 { + -fx-fill: #0d0d39; +} + #Modpack-back { - -fx-fill: #424242; + -fx-fill: #0a0e2e; } #exit, #min{ -fx-background-color: rgba(30, 25, 25, 0); @@ -15,7 +24,7 @@ } #search-modpacks { -fx-text-inner-color: white; - -fx-background-color: rgb(82, 82, 82); + -fx-background-color: rgba(0, 0, 0, 0.17); -fx-padding: 10px; } @@ -25,15 +34,15 @@ } .tab:hover{ - -fx-background-color: #898989; + -fx-background-color: #0c182d; } .selected { - -fx-background-color: #535353; + -fx-background-color: #0c182d; -fx-background-radius: 0em; } .selected:hover { - -fx-background-color: #898989; + -fx-background-color: #0c182d; } \ No newline at end of file diff --git a/src/assets/style/light-theme.css b/src/assets/style/light-theme.css new file mode 100644 index 0000000..94a2f41 --- /dev/null +++ b/src/assets/style/light-theme.css @@ -0,0 +1,48 @@ +#pane { + -fx-background-color: rgba(206, 206, 206, 0.85); +} +#rectangle { + -fx-fill: #898989; +} + +#rectangle-1 { + -fx-fill: #bfbfbf; +} + +#rectangle-2 { + -fx-fill: #909090; +} + +#Modpack-back { + -fx-fill: #9f9f9f; +} +#exit, #min{ + -fx-background-color: rgba(30, 25, 25, 0); +} +#min:hover, #exit:hover{ + -fx-background-color: #bf0000; +} +#search-modpacks { + -fx-text-inner-color: white; + -fx-background-color: rgba(0, 0, 0, 0.17); + -fx-padding: 10px; +} + +.tab { + -fx-background-color: rgba(0, 0, 0, 0); + -fx-background-radius: 0em; +} + +.tab:hover{ + -fx-background-color: #d5d5d5; + +} + +.selected { + -fx-background-color: #6e6e6e; + -fx-background-radius: 0em; +} + +.selected:hover { + -fx-background-color: #6e6e6e; +} \ No newline at end of file