You could use MainForm.Backcolor, or for a Pane you can set the style in code : Pane.Style
you can add multiple styles to the style attribute,
Label1.Style="-fx-background-color : yellow; -fx-text-fill :Green;"
each time it will replace what was there before and apply the new style, and will take precedent over a style sheet definition.