bfeher / BFPaperColors

Flat colors taken from Google's Paper Material Design.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Text Color

nvdcmptr opened this issue · comments

hi
Please add Black and White Text and Divider Color of Material explained in google color style

Done. I've uploaded a new cocoapod, version 1.5.1 that has these new colors:

#pragma mark - Text Colors Dark
+ (UIColor *)paperColorTextDark             { return [UIColor colorWithWhite:0 alpha:0.87f]; }
+ (UIColor *)paperColorTextDarkSecondary    { return [UIColor colorWithWhite:0 alpha:0.54f]; }
+ (UIColor *)paperColorTextDarkHint         { return [UIColor colorWithWhite:0 alpha:0.26f]; }
+ (UIColor *)paperColorTextDarkDivider      { return [UIColor colorWithWhite:0 alpha:0.12f]; }

#pragma mark - Text Colors Light
+ (UIColor *)paperColorTextLight            { return [UIColor colorWithWhite:1 alpha:1]; }
+ (UIColor *)paperColorTextLightSecondary   { return [UIColor colorWithWhite:1 alpha:0.7f]; }
+ (UIColor *)paperColorTextLightHint        { return [UIColor colorWithWhite:1 alpha:0.3f]; }
+ (UIColor *)paperColorTextLightDivider     { return [UIColor colorWithWhite:1 alpha:0.12f]; }

wow. really tnx

No problem :)
Let me know if there is anything else.
Thanks for using this category!