I can change the colors of the buttons using the CSS. For instance:
If I try to do the same for the slider, then I only fill in the background. How for a slider can I change the colors of a separate scale and a separately moving element?
If I try to change the color for the checkbox, but nothing happens at all. How can I change colors for a checkbox? Separately of that field where I put a tick?
CSS:
.button {
-fx-background-color: #095db1;
}
.button:hover {
-fx-background-color: #265685;
}
.button:pressed {
-fx-background-color: #033c73;
}
.button:disabled {
-fx-background-color: #959595;
}
If I try to change the color for the checkbox, but nothing happens at all. How can I change colors for a checkbox? Separately of that field where I put a tick?