Hi Henrik Waschke,
You can use a dynamic CSS class to define the color based on slider value.
For example:
===============
if $slider/sliderminvalue <=50 then ‘green’
else ‘red’
===============
likewise, you can define the CSS style.
You have to create a style under the theme source/... folder in the App directory.
Eg:
.green{
background-color: green;
}