├── .editorconfig ├── .github └── workflows │ ├── build.yml │ └── lint.yml ├── .gitignore ├── .swiftlint.yml ├── CHANGELOG.md ├── ColorToolbox.podspec ├── LICENSE ├── Makefile ├── Package.swift ├── README.md ├── Sources └── ColorToolbox │ ├── PlatformColor+Brightness.swift │ ├── PlatformColor+Hex.swift │ ├── PlatformColor+Internal.swift │ ├── PlatformColor+RelativeLuminance.swift │ ├── PlatformColor.swift │ └── SwiftUI │ └── Color+ColorToolbox.swift └── Tests └── ColorToolboxTests ├── PlatformColorBrightnessTests.swift ├── PlatformColorHexTests.swift ├── PlatformRelativeLuminanceTests.swift └── SwiftUITests.swift /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ColorToolbox.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/ColorToolbox.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/README.md -------------------------------------------------------------------------------- /Sources/ColorToolbox/PlatformColor+Brightness.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/Sources/ColorToolbox/PlatformColor+Brightness.swift -------------------------------------------------------------------------------- /Sources/ColorToolbox/PlatformColor+Hex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/Sources/ColorToolbox/PlatformColor+Hex.swift -------------------------------------------------------------------------------- /Sources/ColorToolbox/PlatformColor+Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/Sources/ColorToolbox/PlatformColor+Internal.swift -------------------------------------------------------------------------------- /Sources/ColorToolbox/PlatformColor+RelativeLuminance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/Sources/ColorToolbox/PlatformColor+RelativeLuminance.swift -------------------------------------------------------------------------------- /Sources/ColorToolbox/PlatformColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/Sources/ColorToolbox/PlatformColor.swift -------------------------------------------------------------------------------- /Sources/ColorToolbox/SwiftUI/Color+ColorToolbox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/Sources/ColorToolbox/SwiftUI/Color+ColorToolbox.swift -------------------------------------------------------------------------------- /Tests/ColorToolboxTests/PlatformColorBrightnessTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/Tests/ColorToolboxTests/PlatformColorBrightnessTests.swift -------------------------------------------------------------------------------- /Tests/ColorToolboxTests/PlatformColorHexTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/Tests/ColorToolboxTests/PlatformColorHexTests.swift -------------------------------------------------------------------------------- /Tests/ColorToolboxTests/PlatformRelativeLuminanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/Tests/ColorToolboxTests/PlatformRelativeLuminanceTests.swift -------------------------------------------------------------------------------- /Tests/ColorToolboxTests/SwiftUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raymondjavaxx/ColorToolbox/HEAD/Tests/ColorToolboxTests/SwiftUITests.swift --------------------------------------------------------------------------------