JavaFx のテキストエリアには、css で割り当てられた背景色を設定できます。
.text-area .content {
-fx-background-color: blue ;
}
スタイル宣言内の tornadoFx でこれを行うにはどうすればよいですか?
override val root = gridpane {
orderTextArea = textarea {
isEditable = false
prefWidth = 900.0
prefHeight = 700.0
isWrapText = true
//textProperty().bind(viewModel.orderText)
style {
textFill = Color.YELLOW
**//backgroundcolor**
}
}