Kroma
Kroma copied to clipboard
A collection of color helpers for SwiftUI.
Kroma 🟥🟩🟦
A collection of color extensions and utilities for SwiftUI.
Install
Swift Package Manager (Standalone)
Add Korma as a dependency in your Package.swift file:
dependencies: [
...
.package(url: "https://github.com/kaishin/Kroma.git", from: "0.1.0")
]
Swift Package Manager (Xcode)
Add https://github.com/kaishin/Kroma.git as a dependency in the Swift Packages tab of the Xcode project.
Usage
Inspect Color Components
Color.purple.rgbComponents
// -> (0.68, 0.32, 0.87)
Convert to Other Representations
Color.purple.rgbComponents.toHSB()
// -> (0.77, 0.63, 0.87)
Lighten or Darken a Color
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)
Get Luma Value of a Color
Color.purple.luma // 0.438744325864315
You can read more on luma here.
Check if a Color is Perceived as Light or Dark
Color.purple.isLight // false
Color.white.isLight // true
Color.yellow.isLight // true
Color.red.isLight // false
License
See LICENSE.