Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/artman/HexColor
Utility that lets you define UIColors in Swift as they've meant to be defined: as HEX values
https://github.com/artman/HexColor
Last synced: 10 days ago
JSON representation
Utility that lets you define UIColors in Swift as they've meant to be defined: as HEX values
- Host: GitHub
- URL: https://github.com/artman/HexColor
- Owner: artman
- License: mit
- Created: 2014-09-05T05:40:55.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-11-24T04:01:10.000Z (almost 7 years ago)
- Last Synced: 2024-10-14T00:34:45.011Z (26 days ago)
- Language: Swift
- Size: 43 KB
- Stars: 103
- Watchers: 4
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-swift-cn - HexColor - Define UIColors as Hex integers. (Libs / Colors)
- awesome-swift - HexColor - Define UIColors as Hex integers. (Libs / Colors)
- awesome-swift - HexColor - Utility that lets you define UIColors in Swift as they've meant to be defined: as HEX values ` 📝 4 years ago ` (Colors [🔝](#readme))
README
# HexColor
[![Build Status](https://travis-ci.org/artman/HexColor.svg)](https://travis-ci.org/artman/HexColor)
[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/HxColor.svg)](https://cocoapods.org/pods/HxColor)
[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
![License](https://img.shields.io/cocoapods/l/HxColor.svg?style=flat&color=gray)
![Platform](https://img.shields.io/cocoapods/p/HxColor.svg?style=flat)
[![Twitter](https://img.shields.io/badge/[email protected]?style=flat)](http://twitter.com/artman)HexColor is a simple extension that lets you initialize UIColors the way they were meant to be initialized: With hex integer values.
## Requirements
- iOS 7.0 / watchOS 2.0 / tvOS 10.0
- Xcode 9.0 (Swift 4.0)## Installation
To use HexColor with a project targeting iOS 7, simply copy `HexColor.swift` into your project.
### CocoaPods
To integrate HexColor into your project add the following to your `Podfile`:
```ruby
platform :ios, '8.0'
use_frameworks!pod 'HxColor', '~> 4.0'
```### Carthage
To integrate Signals into your project using Carthage add the following to your `Cartfile`:
```ruby
github "artman/HexColor" ~> 4.0
```## Quick start
```Swift
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:
```Swift
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:
```Swift
myLabel.textColor = UIColor(0x3377FF).mix(with: 0xFF2222, amount: 0.25)
```## Contribute
To contribute, just fork, branch & send a pull request. To get in touch, hit me up on Twitter [@artman](http://twitter.com/artman)
## License
HexColor is released under an MIT license. See the LICENSE file for more information