From 6c32cf650ed585906fc064b1756d134c3bf47c9f Mon Sep 17 00:00:00 2001 From: DieGurke Date: Sun, 30 Aug 2020 15:14:31 +0200 Subject: [PATCH] Unified color specifications to HEX colors --- client/src/main/resources/css/dark.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/main/resources/css/dark.css b/client/src/main/resources/css/dark.css index 0126507..f990855 100644 --- a/client/src/main/resources/css/dark.css +++ b/client/src/main/resources/css/dark.css @@ -7,7 +7,7 @@ } .button { - -fx-background-color: rgb(105.0,0.0,153.0); + -fx-background-color: #690099; } .button:pressed { @@ -23,7 +23,7 @@ } .list-cell:selected, .list-cell:selected > *, .menu-item:hover { - -fx-background-color: rgb(105.0,0.0,153.0); + -fx-background-color: #690099; } .received-message { @@ -43,7 +43,7 @@ } #login-background { - -fx-background-color: rgb(25, 25, 25); + -fx-background-color: #191919; } #chat-list, #top-bar, #search-panel, #note-background { @@ -65,7 +65,7 @@ } .group-member-names { - -fx-text-fill: rgb(105.0,0.0,153.0); + -fx-text-fill: #690099; -fx-font-weight: bold; }