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
Properties color and swiftUI allow a SwiftUI Color to be obtained from a TypographyKitColor.
All methods & properties previously accessed using TypographyKit. may now be accessed using the shortened form: TK..
Support for RGBA colour values e.g. rgba(255,255,255,255).
Support for hexadecimal color values with transparency e.g. #FFFFFFFF.
Changed
TypographyKit.colors should no longer be used. Instead use:
For SwiftUI: TypographyKit.color(named:) or TK.color(named:).
For UIKit: TypographyKit.uiColor(named:) or TK.uiColor(named:).
Or: TypographyKit.tkColor(named:).color (for SwiftUI) or TypographyKit.tkColor(named:).uiColor (for UIKit).
ConfigurationSettings renamed to TypographyKitConfiguration. This object contains the configuration values supplied by the developer (along with any default configuration values).
TypgraphyKitConfiguration renamed to TypographyKitSettings. This object contains the current configuration as well as loaded colors and typography styles.