diff --git a/Vector/Utils/EventFormatter.m b/Vector/Utils/EventFormatter.m index e34c44462..56b0cec01 100644 --- a/Vector/Utils/EventFormatter.m +++ b/Vector/Utils/EventFormatter.m @@ -48,9 +48,9 @@ self.defaultTextColor = kVectorTextColorBlack; self.subTitleTextColor = kVectorTextColorGray; self.prefixTextColor = kVectorTextColorGray; - self.bingTextColor = kVectorColorGreen; + self.bingTextColor = kVectorColorPinkRed; self.sendingTextColor = kVectorTextColorGray; - self.errorTextColor = kVectorColorPinkRed; + self.errorTextColor = kVectorColorRed; self.defaultTextFont = [UIFont systemFontOfSize:15]; self.prefixTextFont = [UIFont boldSystemFontOfSize:15]; diff --git a/Vector/Utils/VectorDesignValues.h b/Vector/Utils/VectorDesignValues.h index 900c49d5b..7ce58263e 100644 --- a/Vector/Utils/VectorDesignValues.h +++ b/Vector/Utils/VectorDesignValues.h @@ -32,6 +32,7 @@ extern UIColor *kVectorColorLightGrey; extern UIColor *kVectorColorSilver; extern UIColor *kVectorColorOrange; extern UIColor *kVectorColorPinkRed; +extern UIColor *kVectorColorRed; #pragma mark - Vector Text Colors extern UIColor *kVectorTextColorBlack; diff --git a/Vector/Utils/VectorDesignValues.m b/Vector/Utils/VectorDesignValues.m index 11f710e3b..6075c06da 100644 --- a/Vector/Utils/VectorDesignValues.m +++ b/Vector/Utils/VectorDesignValues.m @@ -22,6 +22,7 @@ UIColor *kVectorColorLightGrey; UIColor *kVectorColorSilver; UIColor *kVectorColorOrange; UIColor *kVectorColorPinkRed; +UIColor *kVectorColorRed; UIColor *kVectorTextColorBlack; UIColor *kVectorTextColorDarkGray; @@ -45,6 +46,7 @@ NSInteger const kVectorRoomAdminLevel = 100; kVectorColorLightGrey = [UIColor colorWithRed:(242.0 / 255.0) green:(242.0 / 255.0) blue:(242.0 / 255.0) alpha:1.0]; kVectorColorSilver = [UIColor colorWithRed:(199.0 / 255.0) green:(199.0 / 255.0) blue:(204.0 / 255.0) alpha:1.0]; kVectorColorPinkRed = [UIColor colorWithRed:(255.0 / 255.0) green:(0.0 / 255.0) blue:(100.0 / 255.0) alpha:1.0]; + kVectorColorRed = UIColorFromRGB(0xFF4444); 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];