Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add full color palette for fill/stroke (#5933)
Historically we've only included `fill-current` and `stroke-current` due to file size considerations, and recommended combining them with text color utilities like this: ```html <svg class="fill-current text-blue-500"> ``` With the JIT engine, there's no real reason for this anymore, so this PR enables all colors by default, allowing you to write this out of the box instead: ```html <svg class="fill-blue-500"> ``` Giddy up.
- Loading branch information