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
|
{
"scopeName": "tailwindcss.screen-fn.injection",
"fileTypes": [],
"injectionSelector": "L:meta.property-value.css -comment, meta.at-rule.media.header.css -comment",
"name": "TailwindCSS",
"patterns": [
{
"begin": "(?i)(?<![\\w-])(screen)(\\()",
"beginCaptures": {
"1": {
"name": "support.function.screen.tailwind"
},
"2": {
"name": "punctuation.section.function.begin.bracket.round.css"
}
},
"end": "\\)",
"endCaptures": {
"0": {
"name": "punctuation.section.function.end.bracket.round.css"
}
},
"patterns": [
{
"include": "source.css#comment-block"
},
{
"include": "source.css#string"
},
{
"match": "[^\\s\\)]+?",
"name": "variable.parameter.screen.tailwind"
}
]
}
]
}
|