Automated migration of not-CSS-Color-specification-compliant hsl color values #135
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The CSS color parsing library has changed (#94) and the previously supported hsl color formats, which are not compliant with the CSS Color specification, are no longer supported.
This change helps automate the process of migrating from
hsl(110, 0.7, 0.055)
format tohsl(110, 70%, 5.5%)
format.Source of the non-standard format in the former CSS parsing library
csscolorparser
:https://github.com/deanm/css-color-parser-js/blob/0d3798690d7e52539f43155a07d3d0fd484e6b8b/csscolorparser.js#L183-L184
Launch Checklist
CHANGELOG.md
under the## main
section.