颜色选择器
多平台颜色选择器插件
标签 css
详细信息
安装次数
- 总数 1.48M
- Win 1.08M
- Mac 214K
- Linux 187K
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | 6月22日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 66 | 43 | 34 | 29 | 42 | 51 | 34 | 27 | 47 | 34 | 26 | 31 | 44 | 55 | 32 | 48 | 35 | 23 | 33 | 52 | 46 | 32 | 32 | 28 | 31 | 58 | 46 | 44 | 46 | 35 | 31 | 33 | 55 | 42 | 27 | 40 | 33 | 30 | 48 | 44 | 35 | 35 | 48 | 64 | 44 | 27 |
Mac | 3 | 6 | 3 | 4 | 4 | 2 | 9 | 3 | 4 | 1 | 2 | 5 | 8 | 7 | 3 | 4 | 5 | 2 | 4 | 7 | 2 | 5 | 6 | 5 | 4 | 7 | 6 | 4 | 4 | 7 | 3 | 3 | 8 | 3 | 7 | 9 | 6 | 5 | 8 | 3 | 9 | 1 | 3 | 8 | 4 | 2 |
Linux | 3 | 4 | 3 | 8 | 2 | 7 | 9 | 5 | 3 | 8 | 12 | 12 | 6 | 9 | 1 | 7 | 7 | 1 | 2 | 5 | 8 | 6 | 6 | 10 | 5 | 5 | 6 | 7 | 6 | 3 | 11 | 3 | 8 | 7 | 7 | 6 | 6 | 7 | 2 | 6 | 1 | 5 | 4 | 11 | 4 | 0 |
说明文件
Mac OSX
Linux
Windows
安装
通过包控制安装此存储库。
使用方法
要插入或更改所选颜色,请使用
- Linux:
ctrl+shift+c
- Windows:
ctrl+shift+c
- OS X:
cmd+shift+c
或使用菜单操作
工具
** -> **颜色选择器
默认情况下,使用大写字母插入十六进制颜色代码。要使用小写字母,请将**首选项 -> 软件包设置 -> 颜色选择器 -> 设置-默认
**的内容复制到选择**首选项 -> 软件包设置 -> 颜色选择器 -> 设置-用户
**时创建的空文件中,然后将"color_upper_case"
更改为false
。
从其他插件调用
提供以下命令来帮助从其他插件调用颜色选择器。插件之间通过设置文件共享信息。设置文件不必存在于磁盘上;它仅为了共享返回值而存在于内存中。建议为设置文件使用唯一名称。数据在设置键color_pick_return
中返回。建议在调用任何命令之前在您的设置文件中将color_pick_return
设置为None
。这样可以判断是否设置了变量。
ColorPickApiIsAvailableCommand
此命令用于测试是否已安装 ColorPicker。
>> 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
此命令用于调用颜色选择器并获得所选值。它需要一个设置文件和一个可选的 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