ColorPicker
A multi-platform color picker plugin
Details
Installs
- Total 1.49M
- Win 1.08M
- Mac 215K
- Linux 188K
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 10 | 20 | 42 | 45 | 29 | 28 | 47 | 0 | 0 | 44 | 42 | 41 | 30 | 38 | 54 | 50 | 39 | 34 | 23 | 43 | 35 | 50 | 44 | 41 | 54 | 30 | 26 | 62 | 68 | 81 | 65 | 39 | 18 | 34 | 63 | 49 | 44 | 68 | 50 | 19 | 33 | 63 | 62 | 36 | 51 | 51 |
Mac | 2 | 0 | 0 | 3 | 1 | 3 | 6 | 0 | 0 | 7 | 10 | 4 | 1 | 7 | 9 | 3 | 6 | 5 | 1 | 3 | 3 | 1 | 5 | 6 | 5 | 2 | 3 | 2 | 5 | 4 | 5 | 4 | 3 | 0 | 3 | 8 | 6 | 4 | 3 | 4 | 2 | 6 | 5 | 8 | 6 | 6 |
Linux | 0 | 2 | 2 | 7 | 3 | 3 | 0 | 0 | 0 | 5 | 9 | 13 | 3 | 6 | 4 | 9 | 2 | 3 | 6 | 8 | 4 | 3 | 6 | 4 | 9 | 11 | 4 | 9 | 4 | 8 | 10 | 2 | 9 | 9 | 6 | 5 | 10 | 5 | 10 | 6 | 5 | 10 | 5 | 8 | 5 | 6 |
Readme
- Source
- raw.githubusercontent.com
Mac OSX
Linux
Windows
Installation
Install this repository via Package Control.
Usage
To insert or change a selected color, use:
- Linux:
ctrl+shift+c
- Windows:
ctrl+shift+c
- OS X:
cmd+shift+c
or use menu action
Tools
** -> **ColorPicker
By default, the hex color code is inserted using uppercase letters. To use lowercase letters instead, copy the contents of **Preferences -> Package Settings -> ColorPicker -> Settings-Default
** to the empty file created by selecting **Preferences -> Package Settings -> ColorPicker -> Settings-User
**, then change "color_upper_case"
to false
.
Calling from Other Plugins
To commands are provided to assist in calling a color picker from other plugins. Info is shared between the plugins via a settings file. It does not have to exist on disk; it can exist only in memory for the sole purpose of sharing the return. It is advised to use a unique name for the settings file. The data is returned in the settings key color_pick_return
. It is advised to set color_pick_return
to None
in your settings file before calling any of the commands. So you can tell if it set teh variable or not.
ColorPickApiIsAvailableCommand
This command is used to test if ColorPicker is installed.
>> settings = sublime.load_settings('my_shared.sublime-settings')
>> settings.set('color_pick_return', None)
>> sublime.run_command('color_pick_api_is_available', {'settings': 'my_shared.sublime-settings'})
>> print(settings.get('color_pick_return'))
True
ColorPickApiGetColorCommand
This command is used to call a color picker and get the selected value. It takes a setings file and an optional default_color
.
>> settings = sublime.load_settings('my_shared.sublime-settings')
>> settings.set('color_pick_return', None)
>> sublime.run_command('color_pick_api_get_color', {'settings': 'my_shared.sublime-settings', 'default_color': '#ff0000'})
>> print(settings.get('color_pick_return'))
#23af44