But since it's all CSS, it's not that hard. Someth...
# tornadofx
r
But since it's all CSS, it's not that hard. Something as simple as:
Copy code
class MainStyle : Stylesheet() {
    companion object {
        val base by cssproperty<Color>("-fx-base")
    }
    init {
        root {
            base.value = Color.BLACK
        }
    }
}
will get you most of the way there.