-
Notifications
You must be signed in to change notification settings - Fork 44
/
GutterColor.sublime-settings
57 lines (51 loc) · 1.78 KB
/
GutterColor.sublime-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
/*
* The location of the ImageMagic convert script.
*/
"convert_path" : "/usr/bin/convert",
/*
* The syntax for which to run GutterColor.
*/
"supported_syntax": ["css", "scss", "sass", "less", "stylus", "css3", "xml"],
/*
* Whether to render images with an alpha channel.
* Setting false renders all colors as opaque, true composites
* colors onto a gray checkered background, and "light" is
* the same as true, but with a brighter BG texture
*/
"use_transparency": true,
/*
* Whether Gutter Color should automatically create a new version of the active
* color scheme that doesn't darken gutter icons. (common on light backgrounds)
* This should be a boolean or an array of strings.
*
* Valid strings are "syntax-specific"/"syntax", "global"/"user", and settings
* file names (e.g. "Packages/SomePlugin/SomePlugin.sublime-settings").
* "fix_color_schemes": true is eqivalent to ["global", "syntax-specific"]
*/
"fix_color_schemes": false,
/*
* Whether Gutter Color should search for and render colors for color names,
* e.g. for use with CSS3 color names.
*/
"textual_colors": true,
/*
* Additional user-defined color matches.
*/
/*
"custom_colors": [
{
// The rule to match
"regex": "(['\"])((?:[0-9a-fA-F]{3}){1,2}(?![0-9a-fA-F]+))\\1",
// The capture group to use; defaults to 0 (the whole expression)
"group_id": 2,
// Strings to be concatenated before sending to ImageMagic
"output_prefix": "#",
"output_suffix": ""
},{
"regex": "color=([0-9a-fA-F]{6})",
"group_id": 1,
"output_prefix": "#"
}]
*/
}