Panic's Developer ColorPicker (v1.5.4) does not work in macOS Catalina or macOS BigSur. This is due to enforcement of code-signing. Until Panic releases a newer version that supports Catalina/BigSur, below is the workaround.
You need a Developer Account. This could be a free account. Refer: https://9to5mac.com/2016/03/27/how-to-create-free-apple-developer-account-sideload-apps/
https://panic.com/blog/developer-color-picker-1-5/
Unzip and copy DeveloperColorPicker.colorPicker
to ~/Library/ColorPickers
Code sign
security find-identity -p codesigning
Verify whether the above command lists at least one valid identity. Among the identities copy the identity name with which you would like to sign. Identity name will be a text in the format "Mac Developer: [YOUR_EMAIL] ([YOUR TEAM])"
cd ~/Library/ColorPickers
codesign --force --sign "Mac Developer: [YOUR_EMAIL] ([YOUR TEAM])" ./DeveloperColorPicker.colorPicker
If you do get the error ./DeveloperColorPicker.colorPicker: resource fork, Finder information, or similar detritus not allowed
,
execute the below command and re-try code signing.
xattr -cr ./DeveloperColorPicker.colorPicker
Hello -- I'm a serious hobbyist, but not a serious developer, though I do have a developer account. I too would like to regain use of Panic's colorpicker. However, when I create my self-signed certificate, at the very end step I get "Unknown error: -2,147,414,007." I am using this short YouTube video as my guide.
https://www.youtube.com/watch?v=VbbhhXEGH8o
I appreciate any help or questions.
Thanks, and Happy Thanksgiving.
Mick