The color of Kalm will change after the user switches his wallpaper or adjusting his settings, so you will need to call the method again and compare your previous color to the new color of Kalm and update your elements accordingly.
@interface KalmAPI
+ (UIColor *)getColor;
@end
- (void)yourInit {
UIColor *kalmColor = [%c(KalmAPI) getColor];
yourUILabel.textColor = kalmColor;
yourUIView.backgroundColor = kalmColor;
}