forked from bitst0rm-st3/a-file-icon
-
Notifications
You must be signed in to change notification settings - Fork 42
/
sublime-package.json
85 lines (74 loc) · 3.18 KB
/
sublime-package.json
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"contributions": {
"settings": [
{
"file_patterns": [
"A File Icon.sublime-settings"
],
"schema": {
"properties": {
"color": {
"type": ["array", "string"],
"default": "",
"markdownDescription": "File type icons have different colors by default.\n\nHowever you can make them single colored by providing a color in:\n\n - CSS: \"white\"\n - HEX: \"#fff\", \"#ABABAB\"\n - HSL: \"hsl(360, 100%, 100%)\"\n - RGB: [255, 255, 255]\n - VAR: \"var(--accent)\""
},
"color_on_hover": {
"type": ["array", "string"],
"default": "",
"markdownDescription": "Provide your color if you want to use an other color for the hovered icon.\n\nWorks only when you set a custom color in the `color` option.\n\n - CSS: \"white\"\n - HEX: \"#fff\", \"#ABABAB\"\n - HSL: \"hsl(360, 100%, 100%)\"\n - RGB: [255, 255, 255]\n - VAR: \"var(--accent)\""
},
"color_on_select": {
"type": ["array", "string"],
"default": "",
"markdownDescription": "Provide your color if you want to use an other color for the selected icon.\n\nWorks only when you set a custom color in the `color` option.\n\n - CSS: \"white\"\n - HEX: \"#fff\", \"#ABABAB\"\n - HSL: \"hsl(360, 100%, 100%)\"\n - RGB: [255, 255, 255]\n - VAR: \"var(--accent)\""
},
"opacity": {
"type": "number",
"description": "The opacity level of the default icon state.",
"default": 0.75
},
"opacity_on_hover": {
"type": "number",
"description": "The opacity level of the hovered icon state.",
"default": 0.5
},
"opacity_on_select": {
"type": "number",
"description": "The opacity level of the selected icon state.",
"default": 1.0
},
"size": {
"type": "number",
"description": "This is the default size of Sublime Text icons.\nHowever you can change it to better fit your custom theme.",
"default": 8
},
"row_padding": {
"type": "array",
"markdownDescription": "Every theme adds its own sizes of the sidebar row padding.\n\nE.g. `Default.sublime-theme` provides [8, 3]. You can change it to better fit your icon size.",
"default": []
},
"aliases": {
"type": "boolean",
"markdownDescription": "By default the package provides syntax aliases to apply such icons as `Gulpfile.js`, `webpack.config.js`, `package.json` and etc. If you don't want to use them you can apply icons for syntaxes only via setting this option to `false`.",
"default": true
},
"force_mode": {
"type": "boolean",
"markdownDescription": "Set `true` to use icons provided by the package if your theme supports icon customization (icons provided by the theme will be used by default).",
"default": false
},
"dev_mode": {
"type": "boolean",
"markdownDescription": "Set `true` when developing or debugging the package."
},
"dev_trace": {
"type": "array",
"markdownDescription": "A list of tags to filter the output of logging.\n\nOnly takes its effect when `dev_mode` is `true`.",
"default": ["standard", "reload"]
}
}
}
}
]
}
}