├── .gitattributes ├── Stuff └── AppIcon-readme.png ├── .editorconfig └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /Stuff/AppIcon-readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/System-Color-Picker/HEAD/Stuff/AppIcon-readme.png -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | 10 | [*.yml] 11 | indent_style = space 12 | indent_size = 2 13 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 |

System Color Picker

6 |

7 | The familiar color picker supercharged 8 |

9 |
10 |
11 |
12 |
13 | 14 | ## Download 15 | 16 | [Get it here](https://sindresorhus.com/system-color-picker) 17 | 18 | ## Where is the source code? 19 | 20 | The app is no longer open-source. Despite initial hopes for community collaboration, the project received no contributions while facing challenges with App Store clones. The effort required to maintain it as open-source outweighed the benefits. 21 | 22 | Rest assured, the app remains actively developed. I will continue using GitHub issues for requests and bug reports. 23 | 24 | ## Built with 25 | 26 | - [Defaults](https://github.com/sindresorhus/Defaults) - Swifty and modern UserDefaults 27 | - [KeyboardShortcuts](https://github.com/sindresorhus/KeyboardShortcuts) - Add user-customizable global keyboard shortcuts to your macOS app 28 | - [LaunchAtLogin](https://github.com/sindresorhus/LaunchAtLogin) - Add “Launch at Login” functionality to your macOS app 29 | 30 | ## Related 31 | 32 | - [More apps by me](https://sindresorhus.com/apps) 33 | --------------------------------------------------------------------------------