TestsTested | ✓ |
LangLanguage | SwiftSwift |
License | MIT |
ReleasedLast Release | Oct 2017 |
SwiftSwift Version | 4.0 |
SPMSupports SPM | ✗ |
Maintained by Tuomas Artman.
HexColor is a simple extension that lets you initialize UIColors the way they were meant to be initialized: With hex integer values.
To use HexColor with a project targeting iOS 7, simply copy HexColor.swift
into your project.
myLabel.textColor = UIColor(0xFFFFFF) // Let there be white
myView.backgroundColor = UIColor(0x0f126f) // Deep blue
// Yay, finally you can stop to use this crap:
// UIColor.colorWithRed(0x0f/255.0, green: 0x12/255.0, blue: 0x65/255.0, 1.0)
Need colors with alpha? No worries:
myLabel.textColor = UIColor(0xFF0000).alpha(0.5) // Red with 50% opacity
myLabel.textColor = UIColor(0xFF0000, alpha: 0.5) // Another way to do this
You can also mix two colors together easily:
myLabel.textColor = UIColor(0x3377FF).mix(with: 0xFF2222, amount: 0.25)
To contribute, just fork, branch & send a pull request. To get in touch, hit me up on Twitter @artman
HexColor is released under an MIT license. See the LICENSE file for more information