slider icon indicating copy to clipboard operation
slider copied to clipboard

Feature Request: Theming with `css-vars`

Open KasperAndersson opened this issue 2 years ago • 0 comments

Ex:

.rc-slider-rail {
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--rc-slider-rail-background, #e9e9e9);
  border-radius: 6px;
}
:root {
  --rc-slider-rail-background: #e9e9e9;
  --rc-slider-track-background: #abe2fb;

  --rc-slider-handle-background: #fff;
  --rc-slider-handle-border-color: #96dbfa;
  --rc-slider-handle-dragging-background: #fff;
  --rc-slider-handle-dragging-border-color: #57c5f7;
  --rc-slider-handle-dragging-box-shadow-color: #96dbfa;
  ...,
}

KasperAndersson avatar Mar 09 '22 14:03 KasperAndersson