This repository was archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathlanguage-css.cson
More file actions
47 lines (45 loc) · 1.9 KB
/
language-css.cson
File metadata and controls
47 lines (45 loc) · 1.9 KB
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
'.source.css':
'editor':
'commentStart': '/*'
'commentEnd': '*/'
'foldEndPattern': '(?<!\\*)\\*\\*/|^\\s*\\}|\\/*\\s*@end\\s*\\*\\/'
'autocomplete':
'symbols':
'selector':
'selector': '.css.selector'
'typePriority': 1
'.source.css .meta.property-value.css':
'autocomplete':
'symbols':
'builtins':
'suggestions': [{
'type': 'function'
'snippet': "rgb(${1:255}, ${2:0}, ${3:0})${4:;}$0"
'rightLabel': 'CSS builtin'
'description': "Creates a Color from red (0-255), green (0-255), and blue (0-255)."
'descriptionMoreURL': 'https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#rgb()'
}, {
'type': 'function'
'snippet': "rgba(${1:255}, ${2:0}, ${3:0}, ${4:0.5})${5:;}$0"
'rightLabel': 'CSS builtin'
'description': "Creates a Color from red (0-255), green (0-255), blue (0-255), and alpha (0-1)."
'descriptionMoreURL': 'https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#rgba()'
}, {
'type': 'function'
'snippet': "hsl(${1:360}, ${2:100%}, ${3:100%})${4:;}$0"
'rightLabel': 'CSS builtin'
'description': "Creates a Color from hue (0-360), saturation (0-100%), and lightness (0-100%)."
'descriptionMoreURL': 'https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#hsl()'
},{
'type': 'function'
'snippet': "hsla(${1:360}, ${2:100%}, ${3:100%}, ${4:0.5})${5:;}$0"
'rightLabel': 'CSS builtin'
'description': "Creates a Color from hue (0-360), saturation (0-100%), lightness (0-100%), and alpha (0-1)."
'descriptionMoreURL': 'https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#hsla()'
}]
'.source.css .variable.css':
'autocomplete':
'symbols':
'variable':
'selector': '.variable.css'
'typePriority': 2