DynamicColor icon indicating copy to clipboard operation
DynamicColor copied to clipboard

Yet another extension to manipulate colors easily in Swift and SwiftUI

Results 18 DynamicColor issues
Sort by recently updated
recently updated
newest added

Trying to make a simple gradient between red `#ff0000` and blu `#0000ff` with color spaces HSL and HSB I have an unexpected result. It seem works correctly with `RGB` and...

It is working fine on device but when i run for simulator on my m1 device it gives me this error. Could not find module 'DynamicColor' for target 'x86_64-apple-ios-simulator'; found:...

Hi, I've got this code: ``` VStack { Text("Active Window Border") ColorPickerRing(color: $activeWindowBorderColor, strokeWidth: 30) .frame(width: 100, height: 100, alignment: .center) HStack { Button("Cancel") { // somehow reset color self.colorPicker...

**Describe the bug** Since v5.0.0 DynamicColor.framework does not build in release, so breaking release build of host apps. Reproducible in your own demo app. **To Reproduce** Steps to reproduce the...

**Describe the bug** I updated repo to the latest and found that the latest version of DynamicColor was 4.2.0, but the latest version 5.0 could not be found **To Reproduce**...

I've been unsuccessfully trying to add this project as a Carthage dependency. In the console I get: ``` *** Building scheme "DynamicColor" in DynamicColorExample.xcodeproj Build Failed Task failed with exit...

This caused me some grief with recent update to Xcode 11 GM. Somehow, Swift (5.1) started re-ordering some of DynamicColor's math expressions to use `+` and `-` overloads I had...

It would be helpful to invert only the brightness while retaining the hue and saturation of a color. Is this possible? There is currently `DynamicColor.invert`. Would it be useful to...