Open Teadeno opened 1 day ago
Hi, the package is currently using @import and lighten(), both of which are deprecated in the latest versions of Sass.
@import
lighten()
@use
@forward
color.adjust()
These deprecations may cause warnings or issues with future Sass releases, and it would be great if the package could be updated accordingly.
Thanks!
Deprecation Notice
Hi, the package is currently using
@import
andlighten()
, both of which are deprecated in the latest versions of Sass.@import
is deprecated in favor of@use
and@forward
.lighten()
will eventually be replaced withcolor.adjust()
and other new color functions.These deprecations may cause warnings or issues with future Sass releases, and it would be great if the package could be updated accordingly.
Thanks!