├── .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 |
7 | The familiar color picker supercharged 8 |
9 |