Merge pull request #91 from vector-im/issue_80_rageshake_handling

issue_80: Rageshake handling
This commit is contained in:
giomfo
2016-02-11 09:07:33 +01:00
19 changed files with 99 additions and 9 deletions
+4
View File
@@ -26,6 +26,8 @@ UIColor *kVectorTextColorBlack;
UIColor *kVectorTextColorDarkGray;
UIColor *kVectorTextColorGray;
UIColor *kVectorNavBarTintColor;
@implementation VectorDesignValues
+ (void)load
@@ -42,6 +44,8 @@ UIColor *kVectorTextColorGray;
kVectorTextColorBlack = [UIColor colorWithRed:(60.0 / 255.0) green:(60.0 / 255.0) blue:(60.0 / 255.0) alpha:1.0];
kVectorTextColorDarkGray = [UIColor colorWithRed:(74.0 / 255.0) green:(74.0 / 255.0) blue:(74.0 / 255.0) alpha:1.0];
kVectorTextColorGray = [UIColor colorWithRed:(157.0 / 255.0) green:(157.0 / 255.0) blue:(157.0 / 255.0) alpha:1.0];
kVectorNavBarTintColor = kVectorColorLightGrey;
// Colors copied from Vector web
kVectorColorLightGreen = UIColorFromRGB(0x50e2c2);