A collection of color extensions and utilities for SwiftUI.
Add Korma as a dependency in your Package.swift
file:
dependencies: [
...
.package(url: "https://github.com/kaishin/Kroma.git", from: "0.1.0")
]
Add https://github.com/kaishin/Kroma.git
as a dependency in the Swift Packages tab of the Xcode project.
Color.purple.rgbComponents
// -> (0.68, 0.32, 0.87)
Color.purple.rgbComponents.toHSB()
// -> (0.77, 0.63, 0.87)
Color.purple.rgbComponents // (0.686, 0.322, 0.871)
Color.purple.lighter(by: 0.1).rgbComponents // (0.88, 0.52, 1.0)
Color.purple.darker(by: 0.1).rgbComponents // (0.48, 0.12, 0.67)
Color.purple.luma // 0.438744325864315
You can read more on luma here.
Color.purple.isLight // false
Color.white.isLight // true
Color.yellow.isLight // true
Color.red.isLight // false
See LICENSE.