diff options
Diffstat (limited to 'Juick/Helpers')
-rw-r--r-- | Juick/Helpers/ColorScheme.h | 1 | ||||
-rw-r--r-- | Juick/Helpers/ColorScheme.m | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/Juick/Helpers/ColorScheme.h b/Juick/Helpers/ColorScheme.h index cb3c29b..6620a96 100644 --- a/Juick/Helpers/ColorScheme.h +++ b/Juick/Helpers/ColorScheme.h @@ -16,4 +16,5 @@ +(UIColor *) textColor; +(UIColor *) headerBackground; +(UIColor *) linkColor; ++(UIColor *) secondaryBackground; @end diff --git a/Juick/Helpers/ColorScheme.m b/Juick/Helpers/ColorScheme.m index 69fe98f..67e51ea 100644 --- a/Juick/Helpers/ColorScheme.m +++ b/Juick/Helpers/ColorScheme.m @@ -39,5 +39,9 @@ return [self colorWithHex:0x006699]; } ++ (UIColor *) secondaryBackground { + return [self colorWithHex:0xec4b98]; +} + @end |