diff options
author | Vitaly Takmazov | 2019-03-21 20:17:42 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2019-03-21 20:17:42 +0300 |
commit | 6b40f06a691e1264f6e35b6a5616198e6977787d (patch) | |
tree | d7aa6427861523a8447d52a8b45d57a605a1a714 /Juick/ViewControllers/NewPostViewController.m | |
parent | e6fec9707f61b5d521bf1a2e6a85998f2466bdfa (diff) |
Named colours
Diffstat (limited to 'Juick/ViewControllers/NewPostViewController.m')
-rw-r--r-- | Juick/ViewControllers/NewPostViewController.m | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Juick/ViewControllers/NewPostViewController.m b/Juick/ViewControllers/NewPostViewController.m index 95672e8..5a59867 100644 --- a/Juick/ViewControllers/NewPostViewController.m +++ b/Juick/ViewControllers/NewPostViewController.m @@ -8,7 +8,6 @@ #import "NewPostViewController.h" #import "MessagesViewController.h" -#import "ColorScheme.h" #import "QuoteView.h" #import "APIClient.h" @@ -27,7 +26,7 @@ { [super viewDidLoad]; self.paddingValue = self.bottomConstraint.constant; - [self.view setBackgroundColor:[ColorScheme mainBackground]]; + [self.view setBackgroundColor:[UIColor colorNamed:@"Background"]]; if (_replyTo != nil) { QuoteView *inputView = (QuoteView *) self.inputAccessoryView; inputView.quoteText.text = _replyTo.text; |