Range

Example

Accent color Saturation
HTML
<label>
  Saturation
  <input type="range" value="70" min="0" max="100" aria-describedby="saturation-hint">
</label>
<small id="saturation-hint">
  Accent color Saturation
</small>

Disabled

HTML
<label>
  Saturation
  <input type="range" value="70" min="0" max="100" disabled>
</label>