You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to ensure this library is distinct from the company SVG4K as there is absolutely no connection between the
two.
Bumped Kotlin to 2.4.0.
Added KDocs to SVG Elements.
SvgColor.Hex(...) no longer takes a number. This was wrong from the beginning. SVG's hex colors are a format
For instance 0x00111111 and 0x111111 are the same number but different colors. Therefore, you now must declare the
format: SvgColor.Hex.RGB(0x111111) vs SvgColor.Hex.RGBA(0x00111111)
Added an Unsafe color type as there are a lot of color types, and I am not sure if I will ever support them all.
Almost feels like that should be its own full library.