19.02.2026, 11:49
As Daniel said, use Appearance - Inactive color controls.
Keep in mind that element's default opacity is 50% so the final color will be slightly different. If needed, it can be changed via CSS:
This will target all sliders. CSS rule can be modified to target only specific custom CSS classes.
Keep in mind that element's default opacity is 50% so the final color will be slightly different. If needed, it can be changed via CSS:
Code:
.slider-track div {
opacity: 1;
}This will target all sliders. CSS rule can be modified to target only specific custom CSS classes.
