PrettyColors alternatives and similar libraries
Based on the "Color" category.
Alternatively, view PrettyColors alternatives based on common mentions on social networks and blogs.
-
Colours
A beautiful set of predefined colors and a set of color methods to make your iOS/OSX development life easier. -
ChromaColorPicker
An intuitive iOS color picker built in Swift. -
Gestalt
An unintrusive & light-weight iOS app-theming library with support for animated theme switching. -
SwiftColorGen
A tool that generate code for Swift projects, designed to improve the maintainability of UIColors -
Lorikeet
A lightweight Swift framework for aesthetically pleasing color-scheme generation and CIE color-difference calculation.
Get performance insights in less than 4 minutes
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of PrettyColors or a related project?
README
PrettyColors
[
](./Package.swift)
[
](./LICENSE.md)
Description
PrettyColors
is a Swift library for styling and coloring text in the Terminal.
The library outputs ANSI escape codes and conforms to ECMA Standard 48.
Example
import PrettyColors
let redText: String = Color.Wrap(foreground: .red).wrap("A red piece of text.")
println(redText)
Color.Wrap(foreground: .yellow, style: .bold)
Color.Wrap(foreground: .green, background: .black, style: .bold, .underlined)
// 8-bit (256) color support
Color.Wrap(foreground: 114)
Color.Wrap(foreground: 114, style: .bold)
More examples can be found in [the tests](./Tests/UnitTests/PrettyColorsTests.swift).
Installation
Carthage
Add the following to your Cartfile:
github "jdhealy/PrettyColors"
CocoaPods
Add the following to your Podfile:
pod 'PrettyColors', :git => 'https://github.com/jdhealy/PrettyColors'
You will also need to make sure you're opting into using frameworks:
use_frameworks!
Then run pod install
with CocoaPods 0.36 or newer.
Inspiration
License
PrettyColors is released under the MIT license. See [LICENSE.md](./LICENSE.md) for details.
*Note that all licence references and agreements mentioned in the PrettyColors README section above
are relevant to that project's source code only.