40 lines
805 B
CSS
40 lines
805 B
CSS
* {
|
|
-fx-text-fill: white;
|
|
}
|
|
|
|
.root {
|
|
-fx-background-color: black;
|
|
}
|
|
|
|
.button {
|
|
-fx-background-color: rgb(105.0,0.0,153.0);
|
|
}
|
|
|
|
.button:pressed {
|
|
-fx-background-color: darkviolet;
|
|
}
|
|
|
|
.button:disabled {
|
|
-fx-background-color: lightgray;
|
|
}
|
|
|
|
.list-view, .list-cell, .text-area .content, .text-field, .password-field, .tooltip, .pane, .pane .content, .vbox, .titled-pane > .title, .titled-pane > *.content, .context-menu, .menu-item {
|
|
-fx-background-color: dimgray;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.alert.information.dialog-pane, .alert.warning.dialog-pane, .alert.error.dialog-pane {
|
|
-fx-background-color: black;
|
|
}
|