I don't believe they are documented in the guide, ...
# tornadofx
r
I don't believe they are documented in the guide, but if you look through the TornadoFX tests there are some examples:
Copy code
label {
    unsafe("-fx-background", raw("-fx-control-inner-background"))
    textFill = Color.GREEN
    unsafe(base, raw("green"))
    unsafe("base", Color.GREEN)
    multiProp force base
}
becomes
Copy code
.label {
    -fx-text-fill: rgba(0, 128, 0, 1);
    -fx-background: -fx-control-inner-background;
    -fx-base: green;
    base: rgba(0, 128, 0, 1);
    multi-prop: -fx-base;
}