Skip to content

Commit

Permalink
Update About link color and your rights background color (mozilla-mob…
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyg authored and Sdaswani committed Sep 9, 2017
1 parent ebec69c commit 166bbbe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Blockzilla/AboutViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ private class AboutHeaderView: UIView {

let learnMoreButton = UIButton()
learnMoreButton.setTitle(UIConstants.strings.aboutLearnMoreButton, for: .normal)
learnMoreButton.setTitleColor(UIConstants.colors.focusBlue, for: .normal)
learnMoreButton.setTitleColor(UIConstants.colors.settingsLink, for: .normal)
learnMoreButton.setTitleColor(UIConstants.colors.buttonHighlight, for: .highlighted)
learnMoreButton.titleLabel?.font = UIConstants.fonts.aboutText
learnMoreButton.addTarget(self, action: #selector(didPressLearnMore), for: .touchUpInside)
Expand Down
2 changes: 1 addition & 1 deletion Blockzilla/LocalWebServer/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
body, html {
background: #221F1F;
background: #272727;
color: #E1E5EA;
font: -apple-system-body;
font-size: 14px;
Expand Down
1 change: 1 addition & 0 deletions Blockzilla/UIConstants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ struct UIConstants {
static let settingsTextLabel = UIColor(rgb: 0xFFFFFF)
static let settingsDetailLabel = UIColor(rgb: 0xB2B2B2)
static let settingsSeparator = UIColor(rgb: 0x414146)
static let settingsLink = UIColor(rgb: 0x0A84FF)
static let tableSectionHeader = UIColor(rgb: 0xFFFFFF)
static let toastBackground = UIColor(white: 1, alpha: 0.2)
static let toastText = UIColor.white
Expand Down

0 comments on commit 166bbbe

Please sign in to comment.