-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5fcca41
commit 6ee7b62
Showing
591 changed files
with
237,160 additions
and
2,064 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// | ||
// Color.swift | ||
// Example | ||
// | ||
// Created by Ben Guo on 8/3/18. | ||
// Copyright © 2018 Stripe. All rights reserved. | ||
// | ||
|
||
import UIKit | ||
|
||
extension UIColor { | ||
static let stripeDarkGrey = UIColor(red: 32.0/255.0, green: 28.0/255.0, blue: 70.0/255.0, alpha: 255.0/255.0) | ||
static let stripeBlue = UIColor(red: 161.0/255.0, green: 206.0/255.0, blue: 253.0/255.0, alpha: 255.0/255.0) | ||
static let stripeOffWhite = UIColor(red: 247.0/255.0, green: 250.0/255.0, blue: 252.0/255.0, alpha: 255.0/255.0) | ||
static let stripeLightGrey = UIColor(red: 227.0/255.0, green: 232.0/255.0, blue: 238.0/255.0, alpha: 255.0/255.0) | ||
static let stripeGrey = UIColor(red: 193.0/255.0, green: 201.0/255.0, blue: 210.0/255.0, alpha: 255.0/255.0) | ||
static let stripeGreen = UIColor(red: 135.0/255.0, green: 216.0/255.0, blue: 152.0/255.0, alpha: 255.0/255.0) | ||
static let stripeRed = UIColor(red: 250.0/255.0, green: 181.0/255.0, blue: 179.0/255.0, alpha: 255.0/255.0) | ||
static let stripeOrange = UIColor(red: 247.0/255.0, green: 185.0/255.0, blue: 137.0/255.0, alpha: 255.0/255.0) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.