diff --git a/Yep/Extensions/UIColor+Yep.swift b/Yep/Extensions/UIColor+Yep.swift index 3623578c..6721c434 100644 --- a/Yep/Extensions/UIColor+Yep.swift +++ b/Yep/Extensions/UIColor+Yep.swift @@ -35,8 +35,8 @@ extension UIColor { } class func yepBorderColor() -> UIColor { - //return UIColor(red: 0.898, green: 0.898, blue: 0.898, alpha: 1) - return UIColor(red: 0.7, green: 0.7, blue: 0.7, alpha: 1) + return UIColor(red: 0.898, green: 0.898, blue: 0.898, alpha: 1) +// return UIColor(red: 0.7, green: 0.7, blue: 0.7, alpha: 1) } class func avatarBackgroundColor() -> UIColor { diff --git a/Yep/ViewControllers/Show/ShowViewController.swift b/Yep/ViewControllers/Show/ShowViewController.swift index 03d41a07..43b175be 100644 --- a/Yep/ViewControllers/Show/ShowViewController.swift +++ b/Yep/ViewControllers/Show/ShowViewController.swift @@ -65,7 +65,7 @@ class ShowViewController: UIViewController { steps = [stepA, stepB, stepC] pageControl.numberOfPages = steps.count - pageControl.pageIndicatorTintColor = UIColor.lightGrayColor() + pageControl.pageIndicatorTintColor = UIColor.yepBorderColor() pageControl.currentPageIndicatorTintColor = UIColor.yepTintColor() registerButton.setTitle(NSLocalizedString("Sign Up", comment: ""), forState: .Normal) diff --git a/Yep/Views/Buttons/EdgeBorderButton.swift b/Yep/Views/Buttons/EdgeBorderButton.swift index 43ba997d..fc4f80b9 100644 --- a/Yep/Views/Buttons/EdgeBorderButton.swift +++ b/Yep/Views/Buttons/EdgeBorderButton.swift @@ -32,8 +32,8 @@ class EdgeBorderButton: UIButton { super.layoutSubviews() let topPath = UIBezierPath() - topPath.moveToPoint(CGPoint(x: 0, y: 0)) - topPath.addLineToPoint(CGPoint(x: CGRectGetWidth(bounds), y: 0)) + topPath.moveToPoint(CGPoint(x: 0, y: 0.5)) + topPath.addLineToPoint(CGPoint(x: CGRectGetWidth(bounds), y: 0.5)) topLineLayer.path = topPath.CGPath }