{"id":18839717,"url":"https://github.com/maximbilan/swifthuecolorpicker","last_synced_at":"2025-04-14T07:04:11.063Z","repository":{"id":31580938,"uuid":"35145712","full_name":"maximbilan/SwiftHUEColorPicker","owner":"maximbilan","description":"iOS HUE color picker","archived":false,"fork":false,"pushed_at":"2018-09-22T08:26:03.000Z","size":284,"stargazers_count":46,"open_issues_count":1,"forks_count":14,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-14T07:02:02.572Z","etag":null,"topics":["color","hue","ios","picker","pickerview","swift","ui","ui-components","ui-design","uicolor","uikit"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maximbilan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-05-06T07:39:45.000Z","updated_at":"2023-11-06T02:12:37.000Z","dependencies_parsed_at":"2022-09-03T06:21:25.116Z","dependency_job_id":null,"html_url":"https://github.com/maximbilan/SwiftHUEColorPicker","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximbilan%2FSwiftHUEColorPicker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximbilan%2FSwiftHUEColorPicker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximbilan%2FSwiftHUEColorPicker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximbilan%2FSwiftHUEColorPicker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maximbilan","download_url":"https://codeload.github.com/maximbilan/SwiftHUEColorPicker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248837279,"owners_count":21169374,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["color","hue","ios","picker","pickerview","swift","ui","ui-components","ui-design","uicolor","uikit"],"created_at":"2024-11-08T02:43:52.503Z","updated_at":"2025-04-14T07:04:10.998Z","avatar_url":"https://github.com/maximbilan.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"## SwiftHUEColorPicker\n\n[![Version](https://img.shields.io/cocoapods/v/SwiftHUEColorPicker.svg?style=flat)](http://cocoadocs.org/docsets/SwiftHUEColorPicker)\n[![License](https://img.shields.io/cocoapods/l/SwiftHUEColorPicker.svg?style=flat)](http://cocoadocs.org/docsets/SwiftHUEColorPicker)\n[![Platform](https://img.shields.io/cocoapods/p/SwiftHUEColorPicker.svg?style=flat)](http://cocoadocs.org/docsets/SwiftHUEColorPicker)\n[![CocoaPods](https://img.shields.io/cocoapods/dt/SwiftHUEColorPicker.svg)](https://cocoapods.org/pods/SwiftHUEColorPicker)\n[![CocoaPods](https://img.shields.io/cocoapods/dm/SwiftHUEColorPicker.svg)](https://cocoapods.org/pods/SwiftHUEColorPicker)\n\niOS HUE color picker.\u003c/br\u003e\n![alt tag](https://raw.github.com/maximbilan/SwiftHUEColorPicker/master/img/img1.png)\n## Installation\n\u003cb\u003eCocoaPods:\u003c/b\u003e\n\u003cpre\u003e\npod 'SwiftHUEColorPicker'\n\u003c/pre\u003e\n\u003cb\u003eManual:\u003c/b\u003e\n\u003cpre\u003e\nCopy \u003ci\u003eSwiftHUEColorPicker.swift\u003c/i\u003e to your project.\n\u003c/pre\u003e\n\n## Description\nSupports two modes: \u003ci\u003ehorizontal\u003c/i\u003e and \u003ci\u003evertical\u003c/i\u003e.\u003c/br\u003e\n![alt tag](https://raw.github.com/maximbilan/SwiftHUEColorPicker/master/img/img2.png)\n\u003c/br\u003eAlso, you can change a \u003ci\u003esaturation\u003c/i\u003e, a \u003ci\u003ebrightness\u003c/i\u003e and \u003ci\u003ealpha\u003c/i\u003e values.\n\u003c/br\u003eAnd control has customization. You can customize the label:\u003c/br\u003e\n![alt tag](https://raw.github.com/maximbilan/SwiftHUEColorPicker/master/img/img3.png)\n\u003c/br\u003eOr appearance:\u003c/br\u003e\n\u003c/br\u003e\n![alt tag](https://raw.github.com/maximbilan/SwiftHUEColorPicker/master/img/img4.png)\n## Using\nYou can create from \u003ci\u003eStoryboard\u003c/i\u003e or \u003ci\u003eXIB\u003c/i\u003e. Or create manually:\n\u003cpre\u003e\nlet picker = SwiftHUEColorPicker()\n\u003c/pre\u003e\n\nFor handling changing of values, you should implement protocol \u003ci\u003eSwiftHUEColorPickerDelegate\u003c/i\u003e:\n\u003cpre\u003e\npicker.delegate = self\n\nfunc valuePicked(color: UIColor, type: SwiftHUEColorPicker.PickerType) {\n}\n\u003c/pre\u003e\n\nDirection:\n\u003cpre\u003e\npicker.direction = SwiftHUEColorPicker.PickerDirection.Vertical // Vertical, Horizontal\n\u003c/pre\u003e\n\nType:\n\u003cpre\u003e\npicker.type = SwiftHUEColorPicker.PickerType.Color // Color, Saturation, Brightness, Alpha\n\u003c/pre\u003e\n\nPlease see example for using \u003ci\u003eSwiftHUEColorPicker\u003c/i\u003e in this repository.\n\n## License\n\nSwiftHUEColorPicker is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaximbilan%2Fswifthuecolorpicker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaximbilan%2Fswifthuecolorpicker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaximbilan%2Fswifthuecolorpicker/lists"}