Created by Noor ul Ain Ali on 13/02/2021.
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
alias gb='git branch' | |
alias gbd='git branch -D' | |
alias gbr='git branch -m' | |
alias grb='git branch -r' | |
alias gba='git branch -all' | |
alias gbru='git remote update origin --prune' | |
alias gf='git fetch' | |
alias gp='git pull' | |
alias gpf='git push -f' |
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
alias gb='git branch' | |
alias gbd='git branch -D' | |
alias gbr='git branch -m' | |
alias grb='git branch -r' | |
alias gba='git branch -all' | |
alias gbru='git remote update origin --prune' | |
alias gf='git fetch' | |
alias gp='git pull' | |
alias gpf='git push -f' |
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
import Foundation | |
import UIKit | |
// Usage Examples | |
let shadowColor = Color.shadow.value | |
let shadowColorWithAlpha = Color.shadow.withAlpha(0.5) | |
let customColorWithAlpha = Color.custom(hexString: "#123edd", alpha: 0.25).value | |
enum Color { | |