Changing CSS properties across many files requires careful handling to avoid unintended side effects.
The issue involves changing CSS properties from `background` to `background-image` to support gradient effects on text. This requires modifications across many files and careful handling to avoid regressions. There are already PRs in progress, indicating ongoing work and potential complexity.
I have been attempting some work with background-clip: text like so:
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
To create a gradient effect on text like this:

However, this does not work when using either gradient presets or a custom gradient. Both use background: $gradient instead of background-image: $gradient in the CSS output. By changing those to use background-image, the effect works.
I'm not sure if there are any historical reasons for going with background, but I'd love to see us move to only targeting background-image.
Claim this issue to let others know you're working on it. You'll earn 20 points when you complete it!