Popularity
0.9
Growing
Activity
0.0
Stable
27
4
3
Code Quality Rank:
L5
Programming language: Swift
License: MIT License
Tags:
Colors
Colors alternatives and similar libraries
Based on the "Colors" category.
Alternatively, view Colors 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. -
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. -
HexColor
Utility that lets you define UIColors in Swift as they've meant to be defined: as HEX values -
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 ๐
Appwrite - The Open Source Firebase alternative introduces iOS support
Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more!
Promo
appwrite.io
* 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 Colors or a related project?
README
Colors
A pure Swift library for using ANSI codes. Basically makes command-line coloring and styling very easy!
Note: Colors master
requires Xcode 7.3 / Swift 2.2.
Usage
Colors aims to have a simple and self-explanatory API.
import Colors
// one style
println("foo".red)
// multiple styles
println("foo".red.bold)
// multiple style sets
println("foo".red.bold + "bar".blue)
// grouped styling
println(("foo".red + "bar".blue).bold.underline)
// resets
println(("foo".red + "bar".blue).reset.red.underline.bold)