diff --git a/DB5/VSTheme.m b/DB5/VSTheme.m index f3f50070f..a210f453b 100755 --- a/DB5/VSTheme.m +++ b/DB5/VSTheme.m @@ -164,7 +164,7 @@ - (NSColor *)getMojaveColorForKey: (NSString *)key { return NSColor.controlBackgroundColor; } else if ([key isEqualToString:@"textColor"] || [key isEqualToString:@"noteHeadlineFontColor"]) { return NSColor.textColor; - } else if ([key isEqualToString:@"secondaryTextColor"] || [key isEqualToString:@"noteBodyFontPreviewColor"]) { + } else if ([key isEqualToString:@"secondaryTextColor"]) { return NSColor.secondaryLabelColor; } } diff --git a/Simplenote/NoteListViewController.m b/Simplenote/NoteListViewController.m index 60edc2aca..c375d0a0b 100644 --- a/Simplenote/NoteListViewController.m +++ b/Simplenote/NoteListViewController.m @@ -496,6 +496,8 @@ - (void)applyStyle { VSTheme *theme = [[VSThemeManager sharedManager] theme]; statusField.textColor = [theme colorForKey:@"emptyListViewFontColor"]; + + [self.tableView reloadData]; } - (IBAction)filterNotes:(id)sender { diff --git a/Simplenote/Simplenote-DB5.plist b/Simplenote/Simplenote-DB5.plist index b837800b1..4ca57e7e6 100755 --- a/Simplenote/Simplenote-DB5.plist +++ b/Simplenote/Simplenote-DB5.plist @@ -15,7 +15,7 @@ dividerColor dbdee0 secondaryTextColor - 899199 + 808080 noteHeadlineFont @boldFontName noteHeadlineFontSize @@ -39,7 +39,7 @@ noteBodyFontSize~ipad 19 noteBodyFontPreviewColor - @secondaryTextColor + 808080 noteCellBackgroundSelectionColor @lightBlueColor noteSidePadding @@ -344,13 +344,13 @@ textColor dbdee0 secondaryTextColor - 899199 + 999999 dividerColor 4b5157 noteHeadlineFontColor @textColor noteBodyFontPreviewColor - @secondaryTextColor + 999999 noteCellBackgroundSelectionColor @lightBlueColor switchTintColor diff --git a/Simplenote/SimplenoteAppDelegate.m b/Simplenote/SimplenoteAppDelegate.m index cef24fb0d..d515b0080 100644 --- a/Simplenote/SimplenoteAppDelegate.m +++ b/Simplenote/SimplenoteAppDelegate.m @@ -827,6 +827,7 @@ - (void)applyStyle [window applyMojaveThemeOverrideIfNecessary]; [self.noteEditorViewController applyStyle]; [self.noteEditorViewController fixChecklistColoring]; + [self.noteListViewController applyStyle]; return; }