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/src/main/resources/css/dark.css

28 lines
566 B
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);
}
.button:pressed {
-fx-background-color: darkgray;
}
.button:disabled {
-fx-background-color: lightgray;
}
2020-06-19 16:57:20 +02:00
.list-view, .list-cell, .label, .text-area .content, .text-field, .password-field, .tooltip, .pane, .pane .content, .vbox, .titled-pane > .title, .titled-pane > *.content {
2020-06-18 22:20:34 +02:00
-fx-background-color: dimgray;
}
.alert.information.dialog-pane, .alert.warning.dialog-pane, .alert.error.dialog-pane {
-fx-background-color: black;
}