79830145

Date: 2025-11-25 20:27:06
Score: 0.5
Natty:
Report link

I believe you are looking for CSS variables:

:root {
    --bg-color: lightblue;
    --primary-color: steelblue;
}

.my-container {
    scrollbar-color: var(--primary-color) var(--bg-color);
    background-color: var(--bg-color);
}

I am not sure if system colors could be referenced.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Didi Bear