HexColor alternatives and similar libraries
Based on the "Colors" category.
Alternatively, view HexColor alternatives based on common mentions on social networks and blogs.
-
Chameleon
Color framework for Swift & Objective-C (Gradient colors, hexcode support, colors from images & more). -
SwiftGen-Colors
The Swift code generator for your assets, storyboards, Localizable.strings, โฆ โ Get rid of all String-based APIs! -
DynamicColor
Yet another extension to manipulate colors easily in Swift and SwiftUI -
UIColor-Hex-Swift
Convenience methods for creating color using RGBA hex string. -
SwiftHEXColors
HEX color handling as an extension for UIColor. -
Gradients
๐ A curated collection of splendid 180+ gradients made in swift -
ChromaColorPicker
:art: An intuitive iOS color picker built in Swift. -
RandomColorSwift
An attractive color generator for Swift. Ported from randomColor.js. -
UIGradient
A simple and powerful library for using gradient layer, image, color -
PrettyColors
Styles and colors text in the Terminal with ANSI escape codes. Conforms to ECMA Standard 48. -
AEConicalGradient
Conical (angular) gradient for iOS written in Swift -
ImagePalette
Swift/iOS port of Android's Palette https://developer.android.com/reference/android/support/v7/graphics/Palette.html -
Google Material Color
Google Material Color Palette in Swift -
UIColor-WikiColors
All wikipedia colors implemented as easy to use UIColor extension ๐ -
Colors
A pure Swift library for using ANSI codes. Basically makes command-line coloring and styling very easy!
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of HexColor or a related project?
README
HexColor
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
:
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
:
github "artman/HexColor" ~> 4.0
Quick start
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)
Contribute
To contribute, just fork, branch & send a pull request. To get in touch, hit me up on Twitter @artman
License
HexColor is released under an MIT license. See the LICENSE file for more information
*Note that all licence references and agreements mentioned in the HexColor README section above
are relevant to that project's source code only.