Home

tailwind-ctp-intellisense @6fdef8616ab565ce29c15244dd77f59bb45d7e4d - refs - log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Tailwind intellisense + Catppuccin
tailwind-ctp-intellisense / packages / vscode-tailwindcss / syntaxes / at-apply.tmLanguage.json
- raw
 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
{
  "scopeName": "tailwindcss.at-apply.injection",
  "fileTypes": [],
  "injectionSelector": "L:meta.property-list.css -comment, meta.property-list.scss -comment",
  "name": "TailwindCSS",
  "patterns": [
    {
      "name": "meta.at-rule.apply.tailwind",
      "begin": "(@)apply\\b",
      "beginCaptures": {
        "0": {
          "name": "keyword.control.at-rule.apply.tailwind"
        },
        "1": {
          "name": "punctuation.definition.keyword.css"
        }
      },
      "end": ";|(?=[}])",
      "endCaptures": {
        "0": {
          "name": "punctuation.terminator.apply.tailwind"
        }
      },
      "patterns": [
        {
          "include": "source.css#comment-block"
        },
        {
          "match": "!\\s*important(?![\\w-])",
          "name": "keyword.other.important.css"
        },
        {
          "match": "[^\\s;]+?",
          "name": "entity.other.attribute-name.class.css"
        }
      ]
    }
  ]
}