This repository has been archived on 2021-12-05. You can view files and clone it, but cannot push or open issues or pull requests.
envoy/client/src/main/resources/css/dark.css

61 lines
1.1 KiB
CSS
Raw Normal View History

2020-06-18 22:20:34 +02:00
* {
2020-06-08 10:02:39 +02:00
-fx-text-fill: white;
}
2020-06-18 22:20:34 +02:00
.root {
-fx-background-color: black;
}
.button {
-fx-background-color: rgb(105.0,0.0,153.0);
2020-06-18 22:20:34 +02:00
}
.button:pressed {
-fx-background-color: darkviolet;
2020-06-18 22:20:34 +02:00
}
.button:disabled {
-fx-background-color: lightgray;
}
#messageList, .text-field, .password-field, .tooltip, .pane, .pane .content, .vbox, .titled-pane > .title, .titled-pane > *.content, .context-menu, .menu-item {
-fx-background-color: #222222;
2020-06-18 22:20:34 +02:00
}
.list-cell:selected, .list-cell:selected > *, .menu-item:hover {
-fx-background-color: rgb(105.0,0.0,153.0);
}
.received-message {
-fx-background-color: gray;
}
.own-message {
-fx-background-color: #8fa88f;
}
2020-06-18 22:20:34 +02:00
.alert.information.dialog-pane, .alert.warning.dialog-pane, .alert.error.dialog-pane {
-fx-background-color: black;
}
#loginInputField {
-fx-border-color: white;
}
#loginBackground {
-fx-background-color: rgb(25, 25, 25);
}
2020-07-16 21:13:46 +02:00
#chatList, #topBar {
-fx-background-color: #303030;
}
#messageEnterContainer {
-fx-background-color: #363636;
}
.groupMemberNames {
-fx-text-fill: rgb(105.0,0.0,153.0);
-fx-font-weight: bold;
}