codexly-ui 0.10.109 → 0.10.110

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -28,7 +28,7 @@
28
28
  ::-webkit-scrollbar { width: 0.5rem; height: 0.5rem; }
29
29
  ::-webkit-scrollbar-track { background-color: transparent; }
30
30
  ::-webkit-scrollbar-thumb {
31
- background-color: var(--clx-primary-light);
31
+ background-color: var(--clx-scroll-light, var(--clx-primary-light));
32
32
  border-radius: 0.5rem;
33
33
  }
34
- ::-webkit-scrollbar-thumb:hover { background-color: var(--clx-primary); }
34
+ ::-webkit-scrollbar-thumb:hover { background-color: var(--clx-scroll, var(--clx-primary)); }
@@ -652,6 +652,7 @@ class ClxThemeService {
652
652
  const cfg = this._config();
653
653
  this._applyColorVar('--clx-primary', '--clx-primary-light', cfg.primaryColor);
654
654
  this._applyColorVar('--clx-secondary', '--clx-secondary-light', cfg.secondaryColor);
655
+ this._applyColorVar('--clx-scroll', '--clx-scroll-light', cfg.scrollColor ?? cfg.primaryColor);
655
656
  this._applyTextColor(cfg.textColor, this.isDark());
656
657
  });
657
658
  effect(() => {