{
  "scopeName": "source.css.postcss",
  "fileTypes": [
    "css",
    "pcss",
    "postcss"
  ],
  "name": "PostCSS",
  "foldingStartMarker": "\\{\\s*$",
  "foldingStopMarker": "^\\s*\\}",
  "repository": {
    "at_rule_charset": {
      "begin": "\\s*((@)charset\\b)\\s*",
      "captures": {
        "1": {
          "name": "keyword.control.at-rule.charset.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "comment": "Charset",
      "end": "\\s*((?=;|$))",
      "name": "meta.at-rule.charset.postcss",
      "patterns": [
        {
          "include": "#variable"
        },
        {
          "include": "#string_single"
        },
        {
          "include": "#string_double"
        }
      ]
    },
    "at_rule_apply": {
      "begin": "\\s*((@)apply\\b)\\s*",
      "captures": {
        "1": {
          "name": "keyword.control.at-rule.apply.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "comment": "Apply",
      "end": "\\s*((?=;|$))",
      "name": "meta.at-rule.apply.postcss",
      "patterns": [
        {
          "include": "#variable"
        }
      ]
    },
    "at_rule_content": {
      "begin": "\\s*((@)content\\b)\\s*",
      "captures": {
        "1": {
          "name": "keyword.control.content.postcss"
        }
      },
      "end": "\\s*((?=;))",
      "name": "meta.content.postcss",
      "patterns": [
        {
          "include": "#variable"
        },
        {
          "include": "#selectors"
        },
        {
          "include": "#property_values"
        }
      ]
    },
    "at_rule_each": {
      "begin": "\\s*((@)each\\b)\\s*",
      "captures": {
        "1": {
          "name": "keyword.control.each.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "end": "\\s*((?=\\}))",
      "name": "meta.at-rule.each.postcss",
      "patterns": [
        {
          "match": "\\b(in|\\,)\\b",
          "name": "keyword.control.operator"
        },
        {
          "include": "#variable"
        },
        {
          "include": "#property_values"
        },
        {
          "include": "$self"
        }
      ]
    },
    "at_rule_else": {
      "begin": "\\s*((@)else(\\s*(if)?))\\s*",
      "captures": {
        "1": {
          "name": "keyword.control.else.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "end": "\\s*(?=\\{)",
      "name": "meta.at-rule.else.postcss",
      "patterns": [
        {
          "include": "#logical_operators"
        },
        {
          "include": "#variable"
        },
        {
          "include": "#property_values"
        }
      ]
    },
    "at_rule_extend": {
      "begin": "\\s*((@)extend\\b)\\s*",
      "captures": {
        "1": {
          "name": "keyword.control.at-rule.import.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "end": "\\s*(?=\\;)",
      "name": "meta.at-rule.import.postcss",
      "patterns": [
        {
          "include": "#variable"
        },
        {
          "include": "#selectors"
        },
        {
          "include": "#property_values"
        }
      ]
    },
    "at_rule_fontface": {
      "patterns": [
        {
          "begin": "^\\s*((@)font-face\\b)",
          "beginCaptures": {
            "1": {
              "name": "keyword.control.at-rule.fontface.postcss"
            },
            "2": {
              "name": "punctuation.definition.keyword.postcss"
            }
          },
          "end": "\\s*(?=\\{)",
          "name": "meta.at-rule.fontface.postcss",
          "patterns": [
            {
              "include": "#function_attributes"
            }
          ]
        }
      ]
    },
    "at_rule_for": {
      "begin": "\\s*((@)for\\b)\\s*",
      "captures": {
        "1": {
          "name": "keyword.control.for.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "end": "\\s*(?=\\{)",
      "name": "meta.at-rule.for.postcss",
      "patterns": [
        {
          "match": "(\\=\\=|\\!\\=|\\<\\=|\\>\\=|\\<|\\>|from|to|through)",
          "name": "keyword.control.operator"
        },
        {
          "include": "#variable"
        },
        {
          "include": "#property_values"
        },
        {
          "include": "$self"
        }
      ]
    },
    "at_rule_function": {
      "patterns": [
        {
          "begin": "\\s*((@)function\\b)\\s*",
          "captures": {
            "1": {
              "name": "keyword.control.at-rule.function.postcss"
            },
            "2": {
              "name": "punctuation.definition.keyword.postcss"
            },
            "3": {
              "name": "entity.name.function.postcss"
            }
          },
          "comment": "Function with Attributes",
          "end": "\\s*(?=\\{)",
          "name": "meta.at-rule.function.postcss",
          "patterns": [
            {
              "include": "#function_attributes"
            }
          ]
        },
        {
          "captures": {
            "1": {
              "name": "keyword.control.at-rule.function.postcss"
            },
            "2": {
              "name": "punctuation.definition.keyword.postcss"
            },
            "3": {
              "name": "entity.name.function.postcss"
            }
          },
          "comment": "Simple Function",
          "match": "\\s*((@)function\\b)\\s*",
          "name": "meta.at-rule.function.postcss"
        }
      ]
    },
    "at_rule_if": {
      "begin": "\\s*((@)if\\b)\\s*",
      "captures": {
        "1": {
          "name": "keyword.control.if.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "end": "\\s*(?=\\{)",
      "name": "meta.at-rule.if.postcss",
      "patterns": [
        {
          "include": "#logical_operators"
        },
        {
          "include": "#variable"
        },
        {
          "include": "#property_values"
        }
      ]
    },
    "at_rule_import": {
      "begin": "\\s*((@)import\\b)\\s*",
      "captures": {
        "1": {
          "name": "keyword.control.at-rule.import.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "end": "\\s*((?=;)|(?=\\}))",
      "name": "meta.at-rule.import.postcss",
      "patterns": [
        {
          "include": "#variable"
        },
        {
          "include": "#string_single"
        },
        {
          "include": "#string_double"
        },
        {
          "include": "#functions"
        },
        {
          "include": "#comment_line"
        }
      ]
    },
    "at_rule_nest": {
      "begin": "\\s*((@)nest\\b)\\s*",
      "captures": {
        "1": {
          "name": "keyword.control.at-rule.nest.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "comment": "The Nesting At-Rule",
      "end": "\\s*(?=\\{)",
      "name": "meta.at-rule.nest.postcss",
      "patterns": [
        {
          "include": "#selectors"
        },
        {
          "include": "#property_values"
        }
      ]
    },
    "at_rule_value": {
      "begin": "\\s*((@)value\\b)\\s*",
      "captures": {
        "1": {
          "name": "keyword.control.at-rule.value.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "end": "\\s*((?=;)|(?=\\}))",
      "name": "meta.at-rule.value.postcss",
      "patterns": [
        {
          "include": "#variable"
        },
        {
          "include": "#string_single"
        },
        {
          "include": "#string_double"
        },
        {
          "include": "#functions"
        },
        {
          "include": "#comment_line"
        }
      ]
    },
    "at_rule_use": {
      "begin": "\\s*((@)use\\b)\\s*",
      "captures": {
        "1": {
          "name": "keyword.control.at-rule.use.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "end": "\\s*((?=;)|(?=\\}))",
      "name": "meta.at-rule.use.postcss",
      "patterns": [
        {
          "include": "#variable"
        },
        {
          "include": "#string_single"
        },
        {
          "include": "#string_double"
        },
        {
          "include": "#functions"
        },
        {
          "include": "#comment_line"
        }
      ]
    },
    "at_rule_custom_media": {
      "begin": "\\s*((@)custom-media\\b)\\s*",
      "captures": {
        "1": {
          "name": "keyword.control.at-rule.custom-media.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "end": "\\s*((?=;)|(?=\\}))",
      "name": "meta.at-rule.custom-media.postcss",
      "patterns": [
        {
          "include": "#variable"
        },
        {
          "include": "#string_single"
        },
        {
          "include": "#string_double"
        },
        {
          "include": "#functions"
        },
        {
          "include": "#comment_line"
        }
      ]
    },
    "at_rule_custom_selector": {
      "begin": "\\s*((@)custom-selector\\b)\\s*",
      "captures": {
        "1": {
          "name": "keyword.control.at-rule.custom-selector.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "end": "\\s*((?=;)|(?=\\}))",
      "name": "meta.at-rule.custom-selector.postcss",
      "patterns": [
        {
          "include": "#variable"
        },
        {
          "include": "#string_single"
        },
        {
          "include": "#string_double"
        },
        {
          "include": "#functions"
        },
        {
          "include": "#comment_line"
        }
      ]
    },
    "at_rule_include": {
      "patterns": [
        {
          "begin": "\\s*((@)include\\b)\\s*",
          "captures": {
            "1": {
              "name": "keyword.control.at-rule.include.postcss"
            },
            "2": {
              "name": "punctuation.definition.keyword.postcss"
            },
            "3": {
              "name": "entity.name.function.postcss"
            },
            "4": {
              "name": "entity.name.text.postcss"
            }
          },
          "end": "\\s*[\\)|\\s\\;]",
          "name": "meta.at-rule.include.postcss",
          "patterns": [
            {
              "include": "#function_attributes"
            },
            {
              "include": "#functions"
            }
          ]
        }
      ]
    },
    "at_rule_keyframes": {
      "patterns": [
        {
          "begin": "^\\s*((@)(\\-[\\w\\-]*\\-)?keyframes\\b)\\s*([\\w-]*)",
          "captures": {
            "1": {
              "name": "keyword.control.at-rule.keyframes.postcss"
            },
            "2": {
              "name": "punctuation.definition.keyword.postcss"
            },
            "3": {
              "name": "punctuation.definition.keyword.postcss"
            },
            "4": {
              "name": "entity.name.function.postcss"
            }
          },
          "comment": "Keyframes with Attributes",
          "end": "(?<=\\})(?:\\s*$)?",
          "name": "meta.at-rule.keyframes.postcss",
          "patterns": [
            {
              "begin": "\\{",
              "end": "\\}",
              "beginCaptures": {
                "0": {
                  "name": "punctuation.section.keyframes.begin.postcss"
                }
              },
              "endCaptures": {
                "0": {
                  "name": "punctuation.section.keyframes.end.postcss"
                }
              },
              "name": "meta.keyframes.postcss",
              "patterns": [
                {
                  "match": "(\\b(\\d+%|from\\b|to\\b))",
                  "name": "entity.other.attribute-name.postcss"
                },
                {
                  "include": "#interpolation"
                },
                {
                  "include": "#property_list"
                }
              ]
            }
          ]
        }
      ]
    },
    "at_rule_media": {
      "patterns": [
        {
          "begin": "^\\s*((@)media\\b)\\s*",
          "end": "\\s*(?=\\{)",
          "captures": {
            "1": {
              "name": "keyword.control.at-rule.media.postcss"
            },
            "2": {
              "name": "punctuation.definition.keyword.postcss"
            }
          },
          "name": "meta.at-rule.media.postcss",
          "patterns": [
            {
              "match": "\\b(only)\\b",
              "name": "keyword.control.operator"
            },
            {
              "include": "#property_values"
            },
            {
              "include": "#variable"
            },
            {
              "include": "#logical_operators"
            },
            {
              "include": "#media_features"
            },
            {
              "include": "#media_types"
            },
            {
              "include": "#property_names"
            }
          ]
        }
      ]
    },
    "at_rule_mixin": {
      "patterns": [
        {
          "begin": "\\s*((@)mixin) ([\\w-]*)\\s*\\(",
          "captures": {
            "1": {
              "name": "keyword.control.at-rule.mixin.postcss"
            },
            "2": {
              "name": "punctuation.definition.keyword.postcss"
            },
            "3": {
              "name": "entity.name.function.postcss"
            }
          },
          "comment": "Mixin with Attributes",
          "end": "\\)",
          "name": "meta.at-rule.mixin.postcss",
          "patterns": [
            {
              "include": "#function_attributes"
            }
          ]
        },
        {
          "captures": {
            "1": {
              "name": "keyword.control.at-rule.mixin.postcss"
            },
            "2": {
              "name": "punctuation.definition.keyword.postcss"
            },
            "3": {
              "name": "entity.name.function.postcss"
            }
          },
          "comment": "Simple Mixin",
          "match": "^\\s*((@)mixin) ([\\w-]{1,})",
          "name": "meta.at-rule.mixin.postcss"
        }
      ]
    },
    "at_rule_namespace": {
      "patterns": [
        {
          "begin": "\\s*((@)namespace)\\s+(?=url)",
          "captures": {
            "1": {
              "name": "keyword.control.at-rule.namespace.postcss"
            },
            "2": {
              "name": "punctuation.definition.keyword.postcss"
            },
            "3": {
              "name": "support.function.misc.postcss"
            }
          },
          "comment": "Namespace without prefix",
          "end": "\\s*((?=;|$))",
          "name": "meta.at-rule.namespace.postcss",
          "patterns": [
            {
              "include": "#property_values"
            },
            {
              "include": "#string_single"
            },
            {
              "include": "#string_double"
            }
          ]
        },
        {
          "begin": "\\s*((@)namespace) ([\\w-]*)\\s*",
          "captures": {
            "1": {
              "name": "keyword.control.at-rule.namespace.postcss"
            },
            "2": {
              "name": "punctuation.definition.keyword.postcss"
            },
            "3": {
              "name": "entity.name.function.postcss"
            }
          },
          "comment": "Namespace",
          "end": "\\s*((?=;|$))",
          "name": "meta.at-rule.namespace.postcss",
          "patterns": [
            {
              "include": "#variables"
            },
            {
              "include": "#cssnext_variables"
            },
            {
              "include": "#property_values"
            },
            {
              "include": "#string_single"
            },
            {
              "include": "#string_double"
            }
          ]
        }
      ]
    },
    "at_rule_option": {
      "captures": {
        "1": {
          "name": "keyword.control.at-rule.charset.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "comment": "Option",
      "match": "^\\s*((@)option\\b)\\s*",
      "name": "meta.at-rule.option.postcss"
    },
    "at_rule_page": {
      "patterns": [
        {
          "begin": "^\\s*((@)page)(?=:|\\s)\\s*([-:\\w]*)",
          "captures": {
            "1": {
              "name": "keyword.control.at-rule.page.postcss"
            },
            "2": {
              "name": "punctuation.definition.keyword.postcss"
            },
            "3": {
              "name": "entity.name.function.postcss"
            }
          },
          "comment": "Page with Attributes",
          "end": "\\s*(?=\\{)",
          "name": "meta.at-rule.page.postcss"
        }
      ]
    },
    "at_rule_return": {
      "begin": "\\s*((@)(return)\\b)",
      "captures": {
        "1": {
          "name": "keyword.control.return.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "end": "\\s*((?=;))",
      "name": "meta.at-rule.return.postcss",
      "patterns": [
        {
          "include": "#variable"
        },
        {
          "include": "#property_values"
        }
      ]
    },
    "at_rule_at_root": {
      "begin": "\\s*((@)(at-root))(\\s+|$)",
      "end": "\\s*(?=\\{)",
      "beginCaptures": {
        "1": {
          "name": "keyword.control.at-rule.at-root.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "name": "meta.at-rule.at-root.postcss",
      "patterns": [
        {
          "include": "#function_attributes"
        },
        {
          "include": "#functions"
        },
        {
          "include": "#selectors"
        }
      ]
    },
    "at_rule_warn": {
      "begin": "\\s*((@)(warn|debug|error)\\b)\\s*",
      "captures": {
        "1": {
          "name": "keyword.control.warn.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "end": "\\s*(?=\\;)",
      "name": "meta.at-rule.warn.postcss",
      "patterns": [
        {
          "include": "#variable"
        },
        {
          "include": "#string_double"
        },
        {
          "include": "#string_single"
        }
      ]
    },
    "at_rule_while": {
      "begin": "\\s*((@)while\\b)\\s*",
      "captures": {
        "1": {
          "name": "keyword.control.while.postcss"
        },
        "2": {
          "name": "punctuation.definition.keyword.postcss"
        }
      },
      "end": "\\s*(?=\\})",
      "name": "meta.at-rule.while.postcss",
      "patterns": [
        {
          "include": "#logical_operators"
        },
        {
          "include": "#variable"
        },
        {
          "include": "#property_values"
        },
        {
          "include": "$self"
        }
      ]
    },
    "comment_block": {
      "begin": "\\s*/\\*\\s*",
      "captures": {
        "0": {
          "name": "punctuation.whitespace.comment.trailing.postcss"
        }
      },
      "comment": "Revamped Comment block.",
      "end": "(\\*/)\\s*",
      "name": "comment.block.postcss"
    },
    "comment_line": {
      "begin": "(\\s*)//",
      "comment": "Revamped",
      "end": "$(\\s*)",
      "name": "comment.line.postcss"
    },
    "constant_color": {
      "match": "\\b(aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen)\\b",
      "name": "support.constant.color.w3c-standard-color-name.postcss"
    },
    "constant_default": {
      "match": "\\!default",
      "name": "keyword.other.default.postcss"
    },
    "constant_font": {
      "match": "(\\b(?i:arial|century|comic|courier|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace)\\b)",
      "name": "string.constant.font-name.postcss"
    },
    "constant_functions": {
      "begin": "([\\w-]+)(\\()",
      "beginCaptures": {
        "1": {
          "name": "support.function.misc.postcss"
        },
        "2": {
          "name": "punctuation.section.function.postcss"
        }
      },
      "end": "(\\))",
      "endCaptures": {
        "1": {
          "name": "punctuation.section.function.postcss"
        }
      },
      "patterns": [
        {
          "include": "#parameters"
        }
      ]
    },
    "constant_hex": {
      "captures": {
        "1": {
          "name": "punctuation.definition.constant.postcss"
        }
      },
      "match": "(#)([0-9a-fA-F]{1}|[0-9a-fA-F]{2}|[0-9a-fA-F]{3}|[0-9a-fA-F]{4}|[0-9a-fA-F]{6})\\b",
      "name": "constant.other.color.rgb-value.postcss"
    },
    "constant_important": {
      "match": "\\!important",
      "name": "keyword.other.important.postcss"
    },
    "constant_mathematical_symbols": {
      "match": "(\\b(\\+|\\-|\\*|/)\\b)",
      "name": "support.constant.mathematical-symbols.postcss"
    },
    "constant_optional": {
      "match": "\\!optional",
      "name": "keyword.other.optional.postcss"
    },
    "constant_property_value": {
      "match": "\\b(absolute|all-scroll|always|armenian|auto|baseline|below|bidi-override|block|bold|bolder|both|bottom|border-box|break-all|break-word|butt|capitalize|center|char|circle|cjk-ideographic|col-resize|collapse|column-reverse|column|contain|content-box|cover|crosshair|currentColor|dashed|decimal-leading-zero|decimal|default|disabled|disc|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ellipsis|fill|fixed|flex-end|flex-start|flex|georgian|groove|hand|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|inactive|inherit|inline-block|inline-flex|inline|inset|inside|inter-ideograph|inter-word|italic|justify|katakana-iroha|katakana|keep-all|landscape|left|lighter|line-edge|line-through|line|list-item|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|medium|middle|move|n-resize|ne-resize|newspaper|no-drop|no-repeat|nw-resize|none|normal|not-allowed|nowrap|null|oblique|outset|outside|overline|pointer|portrait|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|right|ridge|round|row-resize|row-reverse|row|rtl|s-resize|scroll|se-resize|separate|small-caps|solid|space-around|space-between|square|static|stretch|strict|super|sw-resize|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-bottom|text-top|text|thick|thin|top|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|wrap|wrap-reverse|zero|true|false|vertical|horizontal)\\b",
      "name": "support.constant.property-value.postcss"
    },
    "postcss_values": {
      "match": "\\b(responsive|fix-legacy|fix|amaro|brannan|earlybird|inkwell|kalvin|lo-fi|nashville|toaster|small-caps|lining-nums)\\b",
      "name": "support.constant.property-value.postcss"
    },
    "constant_rgb": {
      "match": "(?<!scale3d\\(|translate3d\\(|rotate3d\\()(\\b0*((1?[0-9]{1,2})|(2([0-4][0-9]|5[0-5])))\\s*,\\s*)(0*((1?[0-9]{1,2})|(2([0-4][0-9]|5[0-5])))\\s*,\\s*)(0*((1?[0-9]{1,2})|(2([0-4][0-9]|5[0-5])))\\b)",
      "name": "constant.other.color.rgb-value.postcss"
    },
    "constant_rgb_percentage": {
      "match": "\\b([0-9]{1,2}|100)\\s*%,\\s*([0-9]{1,2}|100)\\s*%,\\s*([0-9]{1,2}|100)\\s*%",
      "name": "constant.other.color.rgb-percentage.postcss"
    },
    "constant_sass_functions": {
      "begin": "(headings|stylesheet-url|rgba?|hsla?|ie-hex-str|red|green|blue|alpha|opacity|hue|saturation|lightness|prefixed|prefix|-moz|-svg|-css2|-pie|-webkit|-ms|-o|-khtml|font-(?:files|url)|grid-image|image-(?:width|height|url|color)|sprites?|sprite-(?:map|map-name|file|url|position)|inline-(?:font-files|image)|opposite-position|grad-point|grad-end-position|color-stops|color-stops-in-percentages|grad-color-stops|(?:radial|linear)-(?:gradient|svg-gradient)|opacify|fade-?in|transparentize|fade-?out|lighten|darken|saturate|desaturate|grayscale|adjust-(?:hue|lightness|saturation|color)|scale-(?:lightness|saturation|color)|change-color|spin|complement|invert|mix|-compass-(?:list|space-list|slice|nth|list-size)|blank|compact|nth|first-value-of|join|length|append|nest|append-selector|headers|enumerate|range|percentage|unitless|unit|if|type-of|comparable|elements-of-type|quote|unquote|escape|e|sin|cos|tan|abs|round|ceil|floor|pi|translate(?:X|Y))(\\()",
      "beginCaptures": {
        "1": {
          "name": "support.function.misc.postcss"
        },
        "2": {
          "name": "punctuation.section.function.postcss"
        }
      },
      "end": "(\\))",
      "endCaptures": {
        "1": {
          "name": "punctuation.section.function.postcss"
        }
      },
      "patterns": [
        {
          "include": "#parameters"
        }
      ]
    },
    "constant_unit": {
      "match": "(?<![a-zA-Z])(?x)\n\t\t\t\t(?:-|\\+)?(?:(?:[0-9]+(?:\\.[0-9]+)?)|(?:\\.[0-9]+))\n\t\t\t\t((?:ch|cm|deg|dpi|dpcm|dppx|em|ex|grad|in|mm|ms|pc|pt|px|rad|rem|turn|s|vh|vmin|vmax|vw|тч|пиксель|пикселя|пикселей|пои|пик|градус|град|рад|пов|сек|мсек|твд|твсм|твтч|Гц|кГц|рм|вк|чх|крм|пш|пв|точка|точки|точек|линия|линии|линий|ноготь|ногтя|ногтей|перст|перста|перстов|сотка|сотки|соток|дюйм|дюйма|дюймов|вершок|вершка|вершков|пядь|пяди|пядей|фут|фута|футов|аршин|аршина|аршинов|сажень|сажени|саженей|сажней|верста|версты|вёрст|миля|мили|миль)\\b|%)?",
      "name": "keyword.other.unit.postcss"
    },
    "flow_control": {
      "patterns": [
        {
          "include": "#at_rule_if"
        },
        {
          "include": "#at_rule_else"
        },
        {
          "include": "#at_rule_warn"
        },
        {
          "include": "#at_rule_for"
        },
        {
          "include": "#at_rule_while"
        },
        {
          "include": "#at_rule_each"
        },
        {
          "include": "#at_rule_return"
        }
      ]
    },
    "function_attributes": {
      "patterns": [
        {
          "match": ":",
          "name": "punctuation.definition"
        },
        {
          "include": "#general"
        },
        {
          "include": "#property_values"
        },
        {
          "comment": "We even have error highlighting <3",
          "match": "[=\\{\\}\\?\\;\\@]",
          "name": "invalid.illegal"
        }
      ]
    },
    "functions": {
      "patterns": [
        {
          "begin": "([\\w-]{1,})(\\()\\s*",
          "beginCaptures": {
            "1": {
              "name": "support.function.misc.postcss"
            },
            "2": {
              "name": "punctuation.section.function.postcss"
            }
          },
          "end": "(\\))",
          "endCaptures": {
            "1": {
              "name": "punctuation.section.function.postcss"
            }
          },
          "patterns": [
            {
              "include": "#parameters"
            }
          ]
        },
        {
          "match": "([\\w-]{1,})",
          "name": "support.function.misc.postcss"
        }
      ]
    },
    "general": {
      "comment": "Stuff that should be everywhere",
      "patterns": [
        {
          "include": "#variable"
        },
        {
          "include": "#comment_block"
        },
        {
          "include": "#comment_line"
        }
      ]
    },
    "interpolation": {
      "begin": "#\\{",
      "end": "\\}([A-Za-z/-]*)?",
      "name": "variable.interpolation.postcss",
      "patterns": [
        {
          "include": "#property_values"
        },
        {
          "include": "#variable"
        }
      ]
    },
    "logical_operators": {
      "match": "\\b(\\=\\=|\\!\\=|\\<\\=|\\>\\=|\\<|\\>|not|or|and)\\b",
      "name": "keyword.control.operator"
    },
    "media_attributes": {
      "patterns": [
        {
          "match": ":",
          "name": "punctuation.definition"
        },
        {
          "include": "#general"
        },
        {
          "include": "#property_name"
        },
        {
          "include": "#postcss_properties"
        },
        {
          "include": "#property_values"
        },
        {
          "include": "#property_name_au"
        },
        {
          "comment": "We even have error highlighting <3",
          "match": "[=\\{\\}\\?\\@]",
          "name": "invalid.illegal"
        }
      ]
    },
    "media_features": {
      "patterns": [
        {
          "match": "\\b(min-device-aspect-ratio|max-device-aspect-ratio|device-aspect-ratio|min-aspect-ratio|max-aspect-ratio|aspect-ratio|min-device-height|max-device-height|device-height|min-device-width|max-device-width|device-width|min-monochrome|max-monochrome|monochrome|min-color-index|max-color-index|color-index|min-color|max-color|color|orientation|scan|min-resolution|max-resolution|resolution|grid|min-width|max-width|width)\\b",
          "name": "support.type.property-name.media.css"
        }
      ]
    },
    "media_types": {
      "patterns": [
        {
          "match": "\\b(all|aural|braille|embossed|handheld|print|projection|screen|tty|tv)\\b",
          "name": "support.constant.media.css"
        }
      ]
    },
    "parameters": {
      "patterns": [
        {
          "include": "#variable"
        },
        {
          "include": "#property_values"
        },
        {
          "include": "#comment_line"
        },
        {
          "include": "#comment_block"
        },
        {
          "match": "[^'\",) \\t]+",
          "name": "variable.parameter.url.postcss"
        },
        {
          "match": ",",
          "name": "punctuation.postcss"
        }
      ]
    },
    "properties": {
      "patterns": [
        {
          "begin": "(?<![-a-z])(?=[-a-z])",
          "end": "$|(?![-a-z])",
          "name": "meta.property-name.postcss",
          "patterns": [
            {
              "include": "#property_names"
            },
            {
              "include": "#at_rule_include"
            }
          ]
        },
        {
          "begin": "(:)\\s*(?!(\\s*{))",
          "beginCaptures": {
            "1": {
              "name": "punctuation.separator.key-value.postcss"
            }
          },
          "comment": "Kuroir: fixed nested elements for sass.",
          "end": "\\s*(;)|(\\})",
          "endCaptures": {
            "1": {
              "name": "punctuation.terminator.rule.postcss"
            },
            "2": {
              "name": "punctuation.section.property-list.end.postcss"
            }
          },
          "name": "meta.property-value.postcss",
          "patterns": [
            {
              "include": "#general"
            },
            {
              "include": "#property_values"
            }
          ]
        }
      ]
    },
    "property_list": {
      "begin": "\\{",
      "beginCaptures": {
        "0": {
          "name": "punctuation.section.property-list.begin.postcss"
        }
      },
      "captures": {
        "0": {
          "name": "punctuation.section.property-list.postcss"
        }
      },
      "end": "(\\})|(?<=\\})",
      "endCaptures": {
        "0": {
          "name": "punctuation.section.property-list.end.postcss"
        }
      },
      "name": "meta.property-list.postcss",
      "patterns": [
        {
          "include": "#flow_control"
        },
        {
          "include": "#rules"
        },
        {
          "include": "#properties"
        },
        {
          "include": "$self"
        }
      ]
    },
    "property_name": {
      "match": "((?<=\\s|^)(-webkit-[A-Za-z-]+|-moz-[A-Za-z-]+|-o-[A-Za-z-]+|-ms-[A-Za-z-]+|-khtml-[A-Za-z-]+))|\\b([0-9]{1,3}\\%|zoom|z-index|y|x|wrap|word-wrap|word-spacing|word-break|word|width|widows|will-change|white-space-collapse|white-space|white|weight|volume|voice-volume|voice-stress|voice-rate|voice-pitch-range|voice-pitch|voice-family|voice-duration|voice-balance|voice|visibility|vertical-align|variant|user-select|up|unicode-bidi|unicode|trim|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform|top-width|top-style|top-right-radius|top-left-radius|top-color|top|timing-function|text-wrap|text-transform|text-shadow|text-replace|text-outline|text-justify|text-indent|text-height|text-emphasis|text-decoration|text-align-last|text-align|text|target-position|target-new|target-name|target|table-layout|tab-size|style-type|style-position|style-image|style|stroke|string-set|stretch|stress|stacking-strategy|stacking-shift|stacking-ruby|stacking|src|speed|speech-rate|speech|speak-punctuation|speak-numeral|speak-header|speak|span|spacing|space-collapse|space|sizing|size-adjust|size|shadow|respond-to|rule-width|rule-style|rule-color|rule|ruby-span|ruby-position|ruby-overhang|ruby-align|ruby|rows|rotation-point|rotation|role|right-width|right-style|right-color|right|richness|rest-before|rest-after|rest|resource|resolution|resize|reset|replace|repeat|rendering-intent|rate|radius|quotes|punctuation-trim|punctuation|property|profile|presentation-level|presentation|position|pointer-events|point|play-state|play-during|play-count|pitch-range|pitch|phonemes|perspective|pause-before|pause-after|pause|page-policy|page-break-inside|page-break-before|page-break-after|page|padding-top|padding-right|padding-left|padding-bottom|padding|pack|overhang|overflow-y|overflow-x|overflow-style|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|origin|orientation|orient|ordinal-group|order|opacity|offset|object-position|object-fit|numeral|new|nav-up|nav-right|nav-left|nav-index|nav-down|nav|name|move-to|model|min-width|min-height|min|max-width|max-height|max|marquee-style|marquee-speed|marquee-play-count|marquee-direction|marquee|marks|mark-before|mark-after|marker|mark|margin-top|margin-right|margin-left|margin-bottom|margin|mask-image|list-style-type|list-style-position|list-style-image|list-style|list|lines|line-stacking-strategy|line-stacking-shift|line-stacking-ruby|line-stacking|line-height|line|level|letter-spacing|length|left-width|left-style|left-color|left|label|justify-content|justify|iteration-count|inline-box-align|initial-value|initial-size|initial-before-align|initial-before-adjust|initial-after-align|initial-after-adjust|index|indent|increment|image-resolution|image-orientation|image|icon|hyphens|hyphenate-resource|hyphenate-lines|hyphenate-character|hyphenate-before|hyphenate-after|hyphenate|height|header|hanging-punctuation|grid-rows|grid-columns|grid|gap|font-weight|font-variant|font-variant-ligatures|font-style|font-stretch|font-size-adjust|font-size|font-family|font|float-offset|float|flex-wrap|flex-shrink|flex-grow|flex-group|flex-flow|flex-direction|flex-basis|flex|fit-position|fit|fill|filter|family|empty-cells|emphasis|elevation|duration|drop-initial-value|drop-initial-size|drop-initial-before-align|drop-initial-before-adjust|drop-initial-after-align|drop-initial-after-adjust|drop|down|dominant-baseline|display-role|display-model|display|direction|delay|decoration-break|decoration|cursor|cue-before|cue-after|cue|crop|counter-reset|counter-increment|counter|count|content|columns|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|column-break-before|column-break-after|column|color-profile|color|collapse|clip|clear|character|caption-side|break-inside|break-before|break-after|break|box-sizing|box-shadow|box-pack|box-orient|box-ordinal-group|box-lines|box-flex-group|box-flex|box-direction|box-decoration-break|box-align|box|bottom-width|bottom-style|bottom-right-radius|bottom-left-radius|bottom-color|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-length|border-left-width|border-left-style|border-left-color|border-left|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|bookmark-target|bookmark-level|bookmark-label|bookmark|binding|bidi|before|baseline-shift|baseline|balance|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-break|background-attachment|background|backface-visibility|azimuth|attachment|appearance|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|alignment-baseline|alignment-adjust|alignment|align-self|align-last|align-items|align-content|align|after|adjust)\\b",
      "name": "support.type.property-name.postcss"
    },
    "property_name_error": {
      "match": "(?<![a-z-])(?!-(top|right|left|bottom|color|radius|last|inside|width|before|after|value|size|type|position|style|strategy|shift|align|adjust)\\b|-webkit-[A-Za-z]+\\b|-moz-[A-Za-z]+\\b|-o-[A-Za-z]+\\b|-ms-[A-Za-z]+\\b|-khtml-[A-Za-z]+\\b|z-index\\b|[0-9]{1,3}\\%\\b|zoom\\b|y\\b|x\\b|wrap\\b|word-wrap\\b|word-spacing\\b|word-break\\b|word\\b|will-change\\b|width\\b|widows\\b|white-space-collapse\\b|white-space\\b|white\\b|weight\\b|volume\\b|voice-volume\\b|voice-stress\\b|voice-rate\\b|voice-pitch-range\\b|voice-pitch\\b|voice-family\\b|voice-duration\\b|voice-balance\\b|voice\\b|visibility\\b|vertical-align\\b|variant\\b|user-select\\b|up\\b|unicode-bidi\\b|unicode\\b|u\\b|tt\\b|trim\\b|transition-timing-function\\b|transition-property\\b|transition-duration\\b|transition-delay\\b|transition\\b|transform\\b|top-width\\b|top-style\\b|top-right-radius\\b|top-left-radius\\b|top-color\\b|top\\b|timing-function\\b|text-wrap\\b|text-transform\\b|text-shadow\\b|text-replace\\b|text-outline\\b|text-justify\\b|text-indent\\b|text-height\\b|text-emphasis\\b|text-decoration\\b|text-align-last\\b|text-align\\b|text\\b|target-position\\b|target-new\\b|target-name\\b|target\\b|table-layout\\b|tab-size\\b|style-type\\b|style-position\\b|style-image\\b|style\\b|string-set\\b|stroke\\b|strike\\b|stretch\\b|stress\\b|stacking-strategy\\b|stacking-shift\\b|stacking-ruby\\b|stacking\\b|src\\b|speed\\b|speech-rate\\b|speech\\b|speak-punctuation\\b|speak-numeral\\b|speak-header\\b|speak\\b|span\\b|spacing\\b|space-collapse\\b|space\\b|sizing\\b|size-adjust\\b|size\\b|shadow\\b|s\\b|respond-to\\b|rule-width\\b|rule-style\\b|rule-color\\b|rule\\b|ruby-span\\b|ruby-position\\b|ruby-overhang\\b|ruby-align\\b|ruby\\b|rows\\b|rotation-point\\b|rotation\\b|role\\b|right-width\\b|right-style\\b|right-color\\b|right\\b|richness\\b|rest-before\\b|rest-after\\b|rest\\b|resource\\b|resolution\\b|resize\\b|reset\\b|replace\\b|repeat\\b|rendering-intent\\b|rate\\b|radius\\b|quotes\\b|punctuation-trim\\b|punctuation\\b|property\\b|profile\\b|presentation-level\\b|presentation\\b|position\\b|pointer-events\\b|point\\b|play-state\\b|play-during\\b|play-count\\b|pitch-range\\b|pitch\\b|phonemes\\b|pause-before\\b|pause-after\\b|pause\\b|page-policy\\b|page-break-inside\\b|page-break-before\\b|page-break-after\\b|page\\b|padding-top\\b|padding-right\\b|padding-left\\b|padding-bottom\\b|padding\\b|pack\\b|overhang\\b|overflow-y\\b|overflow-x\\b|overflow-style\\b|overflow\\b|outline-width\\b|outline-style\\b|outline-offset\\b|outline-color\\b|outline\\b|orphans\\b|origin\\b|orientation\\b|orient\\b|ordinal-group\\b|order\\b|opacity\\b|offset\\b|object-position\\b|object-fit\\b|numeral\\b|new\\b|nav-up\\b|nav-right\\b|nav-left\\b|nav-index\\b|nav-down\\b|nav\\b|name\\b|move-to\\b|model\\b|min-width\\b|min-height\\b|min\\b|max-width\\b|max-height\\b|max\\b|marquee-style\\b|marquee-speed\\b|marquee-play-count\\b|marquee-direction\\b|marquee\\b|marks\\b|mark-before\\b|mark-after\\b|marker\\b|mark\\b|margin-top\\b|margin-right\\b|margin-left\\b|margin-bottom\\b|margin\\b|mask-image\\b|list-style-type\\b|list-style-position\\b|list-style-image\\b|list-style\\b|list\\b|lines\\b|line-stacking-strategy\\b|line-stacking-shift\\b|line-stacking-ruby\\b|line-stacking\\b|line-height\\b|line\\b|level\\b|letter-spacing\\b|length\\b|left-width\\b|left-style\\b|left-color\\b|left\\b|label\\b|justify-content\\b|justify\\b|iteration-count\\b|inline-box-align\\b|initial-value\\b|initial-size\\b|initial-before-align\\b|initial-before-adjust\\b|initial-after-align\\b|initial-after-adjust\\b|index\\b|indent\\b|increment\\b|image-resolution\\b|image-orientation\\b|image\\b|icon\\b|hyphens\\b|hyphenate-resource\\b|hyphenate-lines\\b|hyphenate-character\\b|hyphenate-before\\b|hyphenate-after\\b|hyphenate\\b|height\\b|header\\b|hanging-punctuation\\b|grid-rows\\b|grid-columns\\b|grid\\b|gap\\b|font-weight\\b|font-variant\\b|font-variant-ligatures\\b|font-style\\b|font-stretch\\b|font-size-adjust\\b|font-size\\b|font-family\\b|font\\b|float-offset\\b|float\\b|flex-wrap\\b|flex-shrink\\b|flex-grow\\b|flex-group\\b|flex-flow\\b|flex-direction\\b|flex-basis\\b|flex\\b|fit-position\\b|fit\\b|fill\\b|filter\\b|family\\b|empty-cells\\b|emphasis\\b|elevation\\b|duration\\b|drop-initial-value\\b|drop-initial-size\\b|drop-initial-before-align\\b|drop-initial-before-adjust\\b|drop-initial-after-align\\b|drop-initial-after-adjust\\b|drop\\b|down\\b|dominant-baseline\\b|display-role\\b|display-model\\b|display\\b|direction\\b|delay\\b|decoration-break\\b|decoration\\b|cursor\\b|cue-before\\b|cue-after\\b|cue\\b|crop\\b|counter-reset\\b|counter-increment\\b|counter\\b|count\\b|content\\b|columns\\b|column-width\\b|column-span\\b|column-rule-width\\b|column-rule-style\\b|column-rule-color\\b|column-rule\\b|column-gap\\b|column-fill\\b|column-count\\b|column-break-before\\b|column-break-after\\b|column\\b|color-profile\\b|color\\b|collapse\\b|clip\\b|clear\\b|character\\b|center\\b|caption-side\\b|break-inside\\b|break-before\\b|break-after\\b|break\\b|box-sizing\\b|box-shadow\\b|box-pack\\b|box-orient\\b|box-ordinal-group\\b|box-lines\\b|box-flex-group\\b|box-flex\\b|box-direction\\b|box-decoration-break\\b|box-align\\b|box\\b|bottom-width\\b|bottom-style\\b|bottom-right-radius\\b|bottom-left-radius\\b|bottom-color\\b|bottom\\b|border-width\\b|border-top-width\\b|border-top-style\\b|border-top-right-radius\\b|border-top-left-radius\\b|border-top-color\\b|border-top\\b|border-style\\b|border-spacing\\b|border-right-width\\b|border-right-style\\b|border-right-color\\b|border-right\\b|border-radius\\b|border-length\\b|border-left-width\\b|border-left-style\\b|border-left-color\\b|border-left\\b|border-image\\b|border-color\\b|border-collapse\\b|border-bottom-width\\b|border-bottom-style\\b|border-bottom-right-radius\\b|border-bottom-left-radius\\b|border-bottom-color\\b|border-bottom\\b|border\\b|bookmark-target\\b|bookmark-level\\b|bookmark-label\\b|bookmark\\b|binding\\b|bidi\\b|big\\b|before\\b|baseline-shift\\b|baseline\\b|balance\\b|background-size\\b|background-repeat\\b|background-position\\b|background-origin\\b|background-image\\b|background-color\\b|background-clip\\b|background-break\\b|background-attachment\\b|background\\b|backface-visibility\\b|azimuth\\b|attachment\\b|applet\\b|appearance\\b|animation-timing-function\\b|animation-play-state\\b|animation-name\\b|animation-iteration-count\\b|animation-fill-mode\\b|animation-duration\\b|animation-direction\\b|animation-delay\\b|animation\\b|alignment-baseline\\b|alignment-adjust\\b|alignment\\b|align-last\\b|align-self\\b|align-items\\b|align-content\\b|align\\b|after\\b|adjust\\b|acronym\\b)[a-z\\-\\_]+",
      "name": "invalid.illegal"
    },
    "postcss_properties": {
      "match": "\\b(upper-line-height-range|upper-letter-spacing-range|upper-font-range|size|min-line-height-size|min-letter-spacing-size|min-font-size|max-line-height-size|max-letter-spacing-size|max-font-size|lower-line-height-range|lower-letter-spacing-range|lower-font-range|lost-waffle|lost-utility|lost-row|lost-offset|lost-move|lost-masonry-wrap|lost-masonry-column|lost-flex-container|lost-column|lost-center|lost-align|line-height-range|letter-spacing-range|image-size|grid-column|font-variant-numeric|font-variant-caps|create-row|create-column|composes)\\b",
      "name": "support.type.property-name.postcss"
    },
    "property_names": {
      "patterns": [
        {
          "include": "#property_name"
        },
        {
          "include": "#postcss_properties"
        },
        {
          "include": "#property_name_error"
        },
        {
          "include": "#property_name_au"
        }
      ]
    },
    "property_values": {
      "comment": "Stuff that should only be available on values.",
      "patterns": [
        {
          "include": "#string_single"
        },
        {
          "include": "#string_double"
        },
        {
          "include": "#constant_functions"
        },
        {
          "include": "#constant_sass_functions"
        },
        {
          "include": "#constant_hex"
        },
        {
          "include": "#constant_rgb"
        },
        {
          "include": "#constant_rgb_percentage"
        },
        {
          "include": "#constant_important"
        },
        {
          "include": "#constant_default"
        },
        {
          "include": "#constant_optional"
        },
        {
          "include": "#constant_unit"
        },
        {
          "include": "#constant_property_value"
        },
        {
          "include": "#postcss_values"
        },
        {
          "include": "#constant_number"
        },
        {
          "include": "#constant_font"
        },
        {
          "include": "#constant_color"
        },
        {
          "include": "#constant_deprecated_color"
        },
        {
          "include": "#constant_mathematical_symbols"
        }
      ]
    },
    "rules": {
      "patterns": [
        {
          "include": "#general"
        },
        {
          "include": "#at_rule_extend"
        },
        {
          "include": "#at_rule_content"
        },
        {
          "include": "#at_rule_include"
        },
        {
          "include": "#at_rule_media"
        },
        {
          "include": "#selectors"
        }
      ]
    },
    "selector_attribute": {
      "captures": {
        "1": {
          "name": "punctuation.definition.entity.postcss"
        },
        "2": {
          "name": "entity.other.attribute-name.attribute.postcss"
        },
        "3": {
          "name": "punctuation.separator.operator.postcss"
        },
        "4": {
          "name": "string.unquoted.attribute-value.postcss"
        },
        "5": {
          "name": "string.quoted.double.attribute-value.postcss"
        },
        "6": {
          "name": "punctuation.definition.string.begin.postcss"
        },
        "7": {
          "name": "punctuation.definition.string.end.postcss"
        }
      },
      "match": "(?i)(\\[)\\s*(-?[_a-z\\\\[[:^ascii:]]][_a-z0-9\\-\\\\[[:^ascii:]]]*)(?:\\s*([~|^$*]?=)\\s*(?:(-?[_a-z\\\\[[:^ascii:]]][_a-z0-9\\-\\\\[[:^ascii:]]]*)|((?>(['\"])(?:[^\\\\]|\\\\.)*?(\\6)))))?\\s*(\\])",
      "name": "meta.attribute-selector.postcss"
    },
    "selector_class": {
      "captures": {
        "1": {
          "name": "punctuation.definition.entity.css"
        }
      },
      "match": "(\\.)[a-zA-Z0-9_-]+",
      "name": "entity.other.attribute-name.class.css"
    },
    "selector_entities": {
      "match": "\\b(:root|a|abbr|acronym|address|area|article|aside|audio|b|base|bdi|bdo|big|blockquote|body|br|button|canvas|caption|circle|cite|code|col|colgroup|data|datalist|dd|del|details|dfn|dialog|div|dl|dt|em|embed|eventsource|fieldset|figure|figcaption|footer|form|frame|frameset|g|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|line(?!-)|link|main|map|mark|menu|menuitem|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|path|polygon|polyline|pre|progress|q|rb|rect|rp|rt|rtc|ruby|s|samp|script|section|select|small|source|span|strike|strong|style|sub|summary|sup|svg|table(?!-)|tbody|td|template|text(?!-)|textarea|textpath|tfoot|th|thead|time|title|tr|track|tspan|tt|u|ul|var|video|wbr)\\b",
      "name": "entity.name.tag.postcss"
    },
    "selector_custom": {
      "match": "\\b([a-zA-Z0-9]+(-[a-zA-Z0-9]+)+)(?=\\.|\\s++[^:]|\\s*[,{]|:(matches|not|link|any-link|visited|hover|active|focus|target|lang|disabled|enabled|checked|indeterminate|root|nth-child()|nth-last-child()|nth-of-type()|nth-last-of-type()|first-child|last-child|first-of-type|last-of-type|only-child|only-of-type|empty|not|valid|invalid)(\\([0-9A-Za-z]*\\))?)",
      "name": "entity.name.tag.custom.postcss"
    },
    "selector_id": {
      "captures": {
        "1": {
          "name": "punctuation.definition.entity.css"
        }
      },
      "match": "(#)[a-zA-Z][a-zA-Z0-9_-]*",
      "name": "entity.other.attribute-name.id.css"
    },
    "selector_placeholder": {
      "captures": {
        "1": {
          "name": "punctuation.definition.entity.postcss"
        }
      },
      "match": "(\\%)[a-zA-Z0-9_-]+",
      "name": "entity.other.attribute-name.placeholder.postcss"
    },
    "parent_selector_suffix": {
      "match": "(?<=&)[a-zA-Z0-9_-]+",
      "name": "entity.other.attribute-name.parent-selector-suffix.postcss"
    },
    "selector_pseudo_class": {
      "captures": {
        "1": {
          "name": "punctuation.definition.entity.css"
        }
      },
      "match": "(:)\\b(link|any-link|matches|not|visited|hover|active|focus|target|lang|disabled|enabled|checked|indeterminate|root|nth-child()|nth-last-child()|nth-of-type()|nth-last-of-type()|first-child|last-child|first-of-type|last-of-type|only-child|only-of-type|empty|not|valid|invalid)(\\([-+0-9A-Za-z]*\\))?",
      "name": "entity.other.attribute-name.pseudo-class.css"
    },
    "selector_pseudo_element": {
      "captures": {
        "1": {
          "name": "punctuation.definition.entity.css"
        }
      },
      "match": "(:+)((-(moz|webkit|ms)-)?(after|before|first-letter|first-line|selection))\\b",
      "name": "entity.other.attribute-name.pseudo-element.css"
    },
    "selectors": {
      "comment": "Stuff for Selectors.",
      "patterns": [
        {
          "include": "#selector_entities"
        },
        {
          "include": "#selector_custom"
        },
        {
          "include": "#selector_class"
        },
        {
          "include": "#selector_id"
        },
        {
          "include": "#selector_pseudo_class"
        },
        {
          "include": "#tag_wildcard"
        },
        {
          "include": "#tag_parent_reference"
        },
        {
          "include": "#selector_pseudo_element"
        },
        {
          "include": "#selector_attribute"
        },
        {
          "include": "#selector_placeholder"
        },
        {
          "include": "#parent_selector_suffix"
        }
      ]
    },
    "string_double": {
      "begin": "\"",
      "beginCaptures": {
        "0": {
          "name": "punctuation.definition.string.begin.postcss"
        }
      },
      "end": "\"",
      "endCaptures": {
        "0": {
          "name": "punctuation.definition.string.end.postcss"
        }
      },
      "name": "string.quoted.double.postcss",
      "patterns": [
        {
          "match": "\\\\.",
          "name": "constant.character.escape.postcss"
        },
        {
          "include": "#interpolation"
        }
      ]
    },
    "string_single": {
      "begin": "'",
      "beginCaptures": {
        "0": {
          "name": "punctuation.definition.string.begin.postcss"
        }
      },
      "end": "'",
      "endCaptures": {
        "0": {
          "name": "punctuation.definition.string.end.postcss"
        }
      },
      "name": "string.quoted.single.postcss",
      "patterns": [
        {
          "match": "\\\\.",
          "name": "constant.character.escape.postcss"
        },
        {
          "include": "#interpolation"
        }
      ]
    },
    "tag_parent_reference": {
      "match": "\\&",
      "name": "entity.name.tag.reference.postcss"
    },
    "tag_wildcard": {
      "match": "\\*",
      "name": "entity.name.tag.wildcard.postcss"
    },
    "variable": {
      "patterns": [
        {
          "include": "#variables"
        },
        {
          "include": "#cssnext_variables"
        },
        {
          "include": "#interpolation"
        }
      ]
    },
    "cssnext_variables": {
      "captures": {
        "1": {
          "name": "variable.postcss"
        }
      },
      "match": "\\---?[_a-zA-Z]+[_a-zA-Z0-9-]*",
      "name": "variable.var.postcss"
    },
    "variables": {
      "captures": {
        "1": {
          "name": "variable.postcss"
        }
      },
      "match": "\\s*(\\$[A-Za-z0-9_-]+\\b)\\s*",
      "name": "variable.postcss"
    }
  },
  "patterns": [
    {
      "include": "#variable_setting"
    },
    {
      "include": "#at_rule_include"
    },
    {
      "include": "#at_rule_import"
    },
    {
      "include": "#at_rule_use"
    },
    {
      "include": "#at_rule_custom_media"
    },
    {
      "include": "#at_rule_custom_selector"
    },
    {
      "include": "#general"
    },
    {
      "include": "#flow_control"
    },
    {
      "include": "#rules"
    },
    {
      "include": "#property_list"
    },
    {
      "include": "#at_rule_mixin"
    },
    {
      "include": "#at_rule_media"
    },
    {
      "include": "#at_rule_function"
    },
    {
      "include": "#at_rule_charset"
    },
    {
      "include": "#at_rule_apply"
    },
    {
      "include": "#at_rule_option"
    },
    {
      "include": "#at_rule_namespace"
    },
    {
      "include": "#at_rule_nest"
    },
    {
      "include": "#at_rule_fontface"
    },
    {
      "include": "#at_rule_page"
    },
    {
      "include": "#at_rule_keyframes"
    },
    {
      "include": "#at_rule_at_root"
    },
    {
      "match": "\\b(colour|zed-index)\\b(?=\\:|\\s\\s*)",
      "name": "support.type.property-name.postcss"
    },
    {
      "match": "\\b(centre|yeah-nah|fair-dinkum|rack-off|woop-woop)\\b",
      "name": "variable.property-value.postcss"
    },
    {
      "match": "(\\b|\\s)(!bloody-oath)\\b",
      "name": "keyword.control.postcss"
    },
    {
      "match": "\\b(true-blue|vegemite|vb-green|kangaroo|koala)\\b",
      "name": "support.constant.color.w3c-standard-color-name.postcss"
    },
    {
      "match": "(\\b|\\s)(!sorry)\\b",
      "name": "keyword.control.postcss"
    },
    {
      "match": "\\b(grey)\\b",
      "name": "support.constant.color.w3c-standard-color-name.postcss"
    },
    {
      "match": "\\b(animation-verzögerung|animation-richtung|animation-dauer|animation-füll-methode|animation-wiederholung-anzahl|animation-name|animation-abspiel-zustand|animation-takt-funktion|animation|hintergrund-befestigung|hintergrund-beschnitt|hintergrund-farbe|hintergrund-bild|hintergrund-ursprung|hintergrund-position|hintergrund-wiederholung|hintergrund-größe|hintergrund|rahmen-unten-farbe|rahmen-unten-links-radius|rahmen-unten-rechts-radius|rahmen-unten-stil|rahmen-unten-breite|rahmen-unten|rahmen-kollaps|rahmen-farbe|rahmen-bild|rahmen-bild-anfang|rahmen-bild-wiederholung|rahmen-bild-schnitt|rahmen-bild-quelle|rahmen-bild-breite|rahmen-links-farbe|rahmen-links-stil|rahmen-links-breite|rahmen-links|rahmen-radius|rahmen-rechts-farbe|rahmen-rechts-stil|rahmen-rechts-breite|rahmen-rechts|rahmen-abstand|rahmen-stil|rahmen-oben-farbe|rahmen-oben-links-radius|rahmen-oben-rechts-radius|rahmen-oben-stil|rahmen-oben-breite|rahmen-oben|rahmen-breite|rahmen|unten|kasten-schatten|kasten-bemessung|beschriftung-seite|klären|beschnitt|farbe|spalten|spalte-anzahl|spalte-füllung|spalte-lücke|spalte-linie|spalte-linie-farbe|spalte-linie-stil|spalte-linie-breite|spalte-spanne|spalte-breite|inhalt|zähler-erhöhen|zähler-zurücksetzen|zeiger|anzeige|leere-zellen|filter|flex-grundlage|flex-richtung|flex-fluss|flex-wachsem|flex-schrumpfen|flex-umbruch|umlaufen|schrift-familie|schrift-eigenschaft-einstellungen|schrift-größe|schrift-größe-einstellen|schrift-stil|schrift-variante|schrift-gewicht|schrift|höhe|trennstriche|inhalt-ausrichten|links|zeichen-abstand|zeilen-umbruch|zeilen-höhe|listen-stil-bild|listen-stil-position|listen-stil-typ|listen-stil|außenabstand-unten|außenabstand-links|außenabstand-rechts|außenabstand-oben|außenabstand|max-höhe|max-breite|min-höhe|min-breite|deckkraft|reihenfolge|schusterjungen|kontur-farbe|kontur-abstand|kontur-stil|kontur-breite|kontur|überlauf-x|überlauf-y|überlauf|innenabstand-unten|innenabstand-left|innenabstand-rechts|innenabstand-oben|innenabstand|perspektive-ursprung|perspektive|zeiger-ereignisse|position|anführungszeichen|größenänderung|rechts|tabelle-gestaltung|tab-größe|text-ausrichten|text-verzierung|text-einrückung|text-orientierung|text-überlauf|text-wiedergabe|text-schatten|text-umformung|oben|übergang-verzögerung|übergang-dauer|übergang-eigenschaft|übergang-takt-funktion|übergang|unicode-bidi|vertikale-ausrichtung|sichtbarkeit|weißraum|hurenkinder|breite|wort-umbruch|wort-abstand|wort-umschlag|schreib-richtung|ebene)\\b(?=\\:|\\s\\s*)",
      "name": "support.type.property-name.postcss"
    },
    {
      "match": "\\b(absolut|automatisch|fett|fixiert|versteckt|erben|initial|kursiv|links|nicht-wiederholen|keines|relativ|wiederholen-x|wiederholen-y|wiederholen|rechts|durchgezogen|statisch|aufheben)\\b",
      "name": "variable.property-value.postcss"
    },
    {
      "match": "(\\b|\\s)(!wichtig)\\b",
      "name": "keyword.control.postcss"
    },
    {
      "match": "\\b(eisfarben|antikweiß|wasser|aquamarinblau|beige|biskuit|mandelweiß|blauviolett|gelbbraun|kadettenblau|schokolade|kornblumenblau|mais|karmesinrot|dunkelblau|dunkeltürkis|dunklegoldrunenfarbe|dunkelgrün|dunkelgrau|dunkelkhaki|dunkelmagenta|dunkelolivgrün|dunkelorange|dunkleorchidee|dunkelrot|dunklelachsfarbe|dunklesseegrün|dunklesschieferblau|dunkelviolett|tiefrosa|tiefhimmelblau|gedimmtesgrau|persinningblau|backstein|blütenweiß|waldgrün|geisterweiß|grüngelb|honigmelone|leuchtendrosa|indischrot|elfenbein|staubfarbend|lavendelrosa|grasgrün|chiffongelb|hellblau|helleskorallenrot|helltürkis|hellgrau|hellgrün|hellrosa|hellelachsfarbe|hellesseegrün|helleshimmelblau|hellesschiefergrau|hellesstahlblau|hellgelb|limonengrün|leinen|kastanie|mitternachtsblau|cremigeminze|altrosa|mokassin|navajoweiß|marineblau|altespitze|olivgrünbraun|orangerot|orchidee|blassegoldrunenfarbe|blassegoldrunenfarbe|blasstürkis|blasstürkis|pfirsich|pflaume|taubenblau|violett|rosigesbraun|royalblau|sattelbraun|lachsfarben|sandbraun|seegrün|muschel|siennaerde|silber|schieferblau|schiefergrau|schneeweiß|frühlingsgrün|stahlblau|hautfarben|krickentengrün|distel|tomate|türkis|veilchen|weizen|rauchfarben|gelbgrün|himmelblau|schwarz|blau|koralle|cyan|grau|grün|rosa|lavendel|limone|orange|rot|weiß|gelb)\\b",
      "name": "support.constant.color.w3c-standard-color-name.postcss"
    },
    {
      "match": "\\b(ключевыекадры|анимация|имя-анимации|длительность-анимации|функция-времени-анимации|задержка-анимации|число-повторов-анимации|направление-анимации|статус-проигрывания-анимации|фон|положение-фона|цвет-фона|изображение-фона|позиция-фона|повтор-фона|обрезка-фона|начало-фона|размер-фона|граница|нижняя-граница|цвет-нижней-границы|стиль-нижней-границы|толщина-нижней-границы|цвет-границы|левая-граница|цвет-левой-границы|стиль-левой-границы|толщина-левой-границы|правая-граница|цвет-правой-границы|стиль-правой-границы|толщина-правой-границы|стиль-границы|верхняя-граница|цвет-верхней-границы|стиль-верхней-границы|толщина-верхней-границы|толщина-границы|контур|цвет-контура|стиль-контура|толщина-контура|радиус-нижней-левой-рамки|радиус-нижней-правой-рамки|изображение-рамки|начало-изображения-рамки|повтор-изображения-рамки|смещение-изображения-рамки|источник-изображения-рамки|толщина-изображения-рамки|радиус-рамки|радиус-верхней-левой-рамки|радиус-верхней-правой-рамки|разрыв-оформления-блока|тень-блока|переполнение-икс|переполнение-игрек|стиль-переполнения|поворот|точка-поворота|цветовой-профиль|непрозрачность|намерение-отрисовки|метка-закладки|уровень-закладки|цель-закладки|плавающий-сдвиг|дефисный-после|дефисный-до|дефисный-символ|дефисный-строки|дифисный-ресурс|дефисы|разрешение-изображения|маркировка|набор-строк|высота|макс-высота|макс-ширина|мин-высота|мин-ширина|ширина|выравнивание-блока|направление-блока|флекс-блок|группа-флекс-блока|линии-блока|порядок-группы-бокса|ориентация-бокса|пак-бокса|шрифт|семейство-шрифта|размер-шрифта|стиль-шрифта|вид-шрифта|вес-шрифта|определение-шрифта|подгонка-размера-шрифта|разрядка-шрифта|содержимое|инкремент-счетчика|сброс-счетчика|кавычки|обрезка|сдвинуть-на|политика-страницы|колонки-сетки|ряды-сетки|цель|имя-цели|новая-цель|позиция-цели|подгонка-выравнивания|выравнивание-базовой|сдвиг-базовой|домининация-базовой|выравнивание-строчного-блока|высота-текста|стиль-списка|изображение-стиля-списка|позиция-стиля-списка|тип-стиля-списка|поле|поле-снизу|поле-слева|поле-справа|поле-сверху|направление-шатра|количество-повторов-шатра|скорость-шатра|стиль-шатра|количество-колонок|заполнение-колонок|зазор-колонок|направляющая-колонок|цвет-направляющей-колонок|стиль-направляющей-колонок|ширина-направляющей-колонок|охват-колонок|ширина-колонок|колонки|отбивка|отбивка-снизу|отбивка-слева|отбивка-справа|отбивка-сверху|ориентация-изображения|страница|размер|снизу|очистить|обрезать|курсор|отображение|обтекание|слева|переполнение|положение|справа|сверху|видимость|зед-индекс|сироты|разрыв-страницы-после|разрыв-страницы-до|разрыв-страницы-внутри|вдовы|схлопывание-границ|расстояние-границ|сторона-подписи|пустые-ячейки|макет-таблицы|цвет|направление|мужбуквенный-пробел|высота-строки|выравнивание-текста|оформление-текста|отступ-текста|трансформация-текста|уникод-биди|вертикальное-выравнивание|пробелы|межсловный-пробел|висячая-пунктуация|обрезка-пунктуации|выравнивание-последней-строки|выключка-текста|контур-текста|переполнение-текста|тень-текста|подгонка-размера-текста|обертка-текста|разрыв-слова|обертка-слова|трансформация|точка-трансформации|стиль-трансформации|перспектива|точка-перспективы|видимость-задника|переход|свойство-перехода|длительность-перехода|функция-вренеми-перехода|задержка-перехода|представление|калибровка-блока|иконка|нав-вниз|нав-индекс|нав-влево|нав-вправо|нав-вверх|смещение-контура|ресайз|зум|фильтр|выделение-пользователем|сглаживание-шрифта|осх-сглаживание-шрифта|переполнение-прокрутки|ист)\\b(?=\\:|\\s\\s*)",
      "name": "support.type.property-name.postcss"
    },
    {
      "match": "\\b(выше|абсолютный|абсолютная|абсолютное|после|псевдоним|все|всё|свободный-скролл|все-капителью|всё-капителью|позволить-конец|алфавитный|алфавитная|алфавитное|альтернативный|альтернативная|альтернативное|альтернативный-инвертированн|альтернативная-инвертированн|альтернативное-инвертированн|всегда|армянский|армянская|армянское|авто|избегать|избегать-колонку|избегать-страницу|назад|баланс|базоваялиния|перед|ниже|отменить-биди|мигать|блок|блокировать|блочное|жирный|более-жирный|по-границе|оба|нижний|перенос-всего|перенос-слов|капитализировать|ячейка|центр|круг|обрезать|клонировать|закрывающие-кавычки|ресайз-колонки|схлопнуть|колонка|инвертировать-колонки|насыщенный|содержать|содержит|по-содержимому|контекстное-меню|копия|копировать|покрыть|перекрестие|пунктирная|десятичный|десятичный-ведущий-ноль|обычный|потомки|диск|распространять|распространить|точка|точечный|двойной|двойной-круг|в-ресайз|легкость|легкость-в|легкость-в-из|легкость-из|края|эллипсис|вставленный|конец|зв-ресайз|расширен|экстра-конденсирован|экстра-расширен|заполнение|заполнен|первый|фиксирован|плоский|флекс|флекс-конец|флекс-старт|форсированный-конец|вперед|полной-ширины|грузинский|канавка|помощь|скрытый|спрятать|горизонтальный|горизонтальный-тб|иконка|бесконечный|бесконечная|бесконечное|наследовать|начальный|начальная|начальное|чернила|строчный|строчный-блок|строчный-флекс|строчная-таблица|вставка|внутри|между-кластером|между-иероглифом|между-словом|инвертированный|инвертированная|инвертированное|курсив|курсивный|выключитьстроку|кашида|сохранить-все|большое|больше|последний|последняя|последнее|слева|левый|легче|зачеркнуть|линейный|линейная|линейное|последний-пункт|локальный|локальная|локальное|свободный|свободная|свободное|нижний-буквенный|нижний-греческий|нижний-латинский|нижний-романский|нижний-регистр|лнп|ручной|соответствует-родителю|средний|средняя|среднее|посередине|смешенный-справа|двигать|с-ресайз|св-ресайз|свюз-ресайз|не-закрывать-кавычки|не-сбрасывать|не-открывать-кавычки|не-повторять|нет|ничего|нету|нормальный|не-разрешен|безобтекания|сю-ресайз|сз-ресайз|сзюв-ресайз|объекты|наклонный|наклонная|наклонное|открыт|открывающие-кавычки|начало|снаружи|оверлайн|по-отбивке|страница|пауза|указатель|пре|пре-линия|пре-обертка|прогресс|относительный|относительная|относительное|повтор|повтор-икс|повтор-игрек|обратный|обратная|обратное|хребет|справа|превый|правый|круглый|круглая|круглое|ряд|ряд-ресайз|обратный-ряд|пнл|бегущий|бегущяя|бегущее|ю-ресайз|уменьшить|уменьшать|скролл|юв-ресайз|полу-конденсирован|полу-расширен|отдельный|отдельная|отдельное|кунжут|показать|боком|боком-лева|боком-права|нарезать|маленький|маленький|капитель|меньше|сплошной|пробел|пробел-вокруг|пробел-между|пробелы|квадрат|старт|статический|шаг-конец|шаг-старт|растягивать|строгий|строгая|строгое|стиль|суб|над|юз-ресайз|таблица|заголовок-таблицы|ячейка-таблицы|колонка-таблицы|группа-колонок-талицы|группа-футера-таблицы|группа-заголовка-таблицы|ряд-таблицы|группа-ряда-таблицы|текст|текст-внизу|текст-наверху|толстый|тонкий|начертание-титров|верх|прозрачный|прозрачная|прозрачное|треугольный|треугольная|треугольное|сверх-конденсирован|сверх-расширен|под|подчеркнут|однорегистровый|однорегистровая|однорегистровое|отключенный|отключенная|отключенное|верхний-буквенный|верхний-латинский|верхний-романский|верхний-регистр|вертикально|использовать-ориентуцию-знака|вертикальный|вертикальная|вертикальное|вертикальный-лп|вертикальный-пл|вертикальный-текст|видимый|з-ресайз|ждать|волнистый|волнистая|волнистое|вес|обернуть|обернуть-обратный|оч-большой|оч-маленький|очоч-большой|очоч-маленький|призумить|отзумить)\\b",
      "name": "variable.property-value.postcss"
    },
    {
      "match": "(\\b|\\s)(!важно)\\b",
      "name": "keyword.control.postcss"
    },
    {
      "match": "\\b(красный|красная|красное|оранжевый|оранжевая|оранжевое|желтый|желтая|желтое|оливковый|оливковая|оливковое|пурпурный|пурпурное|пурпурная|фуксия|белый|белая|белое|лимонный|лимонная|лимонное|зеленый|зеленая|зеленое|темносиний|темносиняя|темносинее|синий|синяя|синее|водяной|водяная|водяное|бирюзовый|бирюзовая|бирюзовое|черный|черная|черное|серебряный|серебряная|серебряное|серый|серая|серое)\\b",
      "name": "support.constant.color.w3c-standard-color-name.postcss"
    },
    {
      "match": "\\b(моноширинный|c-засечками|без-засечек|фантазийный|рукописный)\\b",
      "name": "string.constant.font-name.postcss"
    },
    {
      "match": "\\b(кзс|вычс|кзсп|урл|аттр|от|до)\\b",
      "name": "storage.name.tag.postcss"
    },
    {
      "match": "\\b(fondo|flota|ancho|alto|puntero|redondeado|izquierda|derecha|arriba|abajo|espaciado)\\b",
      "name": "support.type.property-name.postcss(?=\\:|\\s\\s*)"
    },
    {
      "match": "\\b(subrayado|manito|mayuscula|izquierda|derecha|arriba|abajo)\\b",
      "name": "variable.property-value.postcss"
    },
    {
      "match": "(\\b|\\s)(!importantisimo)\\b",
      "name": "keyword.control.postcss"
    },
    {
      "match": "\\b(animering-fördröjning|animering-riktning|animering-längd|animering-fyllnads-metod|animering-upprepning-antal|animering-namn|animering-spelning-status|animering-tajming-funktion|animering|bakgrund-bilaga|bakgrund-klipp|bakgrund-färg|bakgrund-bild|bakgrund-ursprung|bakgrund-position|bakgrund-upprepning|bakgrund-storlek|bakgrund|kant-botten-färg|kant-botten-vänster-radie|kant-botten-höger-radie|kant-botten-stil|kant-botten-bredd|kant-botten|kant-kollaps|kant-färg|kant-bild|kant-bild-början|kant-bild-upprepning|kant-bild-snitt|kant-bild-källa|kant-bild-bredd|kant-vänster-färg|kant-vänster-stil|kant-vänster-bredd|kant-vänster|kant-radie|kant-höger-färg|kant-höger-stil|kant-höger-bredd|kant-höger|kant-avstånd|kant-stil|kant-topp-färg|kant-topp-vänster-radie|kant-topp-höger-radie|kant-topp-stil|kant-topp-bredd|kant-topp|kant-bredd|kant|botten|låda-skugga|låda-kalibrering|bildtext-sida|rensa|klipp|färg|kolumn|kolumn-antal|kolumn-fyllning|kolumn-mellanrum|kolumn-linje|kolumn-linje-färg|kolumn-linje-stil|kolumn-linje-bredd|kolumn-spann|kolumn-bredd|innehåll|räknare-ökning|räknare-återställ|muspekare|visa|tomma-celler|filter|flex-grund|flex-rikting|flex-flöde|flex-ökning|flex-förminskning|flex-omslutning|flex|flyt|typsnitt-familj|typsnitt-särdrag-inställningar|typsnitt-storlek|typsnitt-storlek-justering|typsnitt-stil|typsnitt-variant|typsnitt-vikt|typsnitt|höjd|bindestreck|justera-innehåll|vänster|bokstav-mellanrum|linje-brytning|linje-höjd|lista-stil-bild|lista-stil-position|lista-stil-typ|lista-stil|marginal-botten|marginal-vänster|marginal-höger|marginal-topp|marginal|max-höjd|max-bredd|min-höjd|min-bredd|opacitet|ordning|föräldralösa|kontur-färg|kontur-abstand|kontur-stil|kontur-bredd|kontur|överflöde-x|överflöde-y|överflöde|stoppning-botten|stoppning-left|stoppning-höger|stoppning-topp|stoppning|perspektiv-ursprung|perspektiv|pekare-händelser|position|citat|storleksändra|höger|tabell-layout|tab-storlek|text-riktning|text-dekoration|text-indrag|text-inriktning|text-överflöde|text-rendering|text-skugga|text-omvanlda|topp|övergång-fördröjning|övergång-längd|övergång-egenskap|övergång-tajming-funktion|övergång|unicode-bidi|vertikal-riktning|synlighet|luftrum|änkor|bredd|ord-brytning|ord-avstånd|ord-omslutning|skriv-rikting|nivå)\\b(?=\\:|\\s\\s*)",
      "name": "support.type.property-name.postcss"
    },
    {
      "name": "variable.property-value.postcss",
      "match": "\\b(absolut|automatisk|fet|fixerad|gömd|ärva|inledande|kursiv|vänster|ingen-upprepning|ingen|uppradad|uppradad-block|relativ|upprepning-x|upprepning-y|upprepning|höger|solid|statisk|urkoppla)\\b"
    },
    {
      "match": "(\\b|\\s)(!viktigt)\\b",
      "name": "keyword.control.postcss"
    },
    {
      "match": "\\b(isfärg|antikvitt|vatten|marinblå|beige|kex|mandelvit|blålila|gulbrun|kadettenblå|choklad|kornblå|majs|crimson|mörkblå|mörkturkos|mörkgyllenröd|mörkgrön|mörkgrå|mörkkhaki|mörkrosa|mörkolivgrön|mörkorange|mörkorchidee|mörkröd|mörklaxrosa|mörkväxtgräs|mörkskifferblått|mörklila|djuprosa|djuphimmelblå|grummelgrå|skojarblå|tegelsten|vitsippa|skogsgrön|spökvit|gröngul|honungsmelon|hetrosa|indiskröd|elfenben|khaki|lavendelrosa|gräsgrön|chiffongul|himmelblå|ljuskorall|ljusturkos|ljusgrå|ljusgrön|ljusrosa|ljuselaxrosa|ljushavsgrön|ljushimmelblå|ljusskiffergrå|ljusstålblå|ljusgul|limegrön|linnen|kastanj|midnattsblå|mintkräm|gammelrosa|mokassin|navajovitt|marineblå|spets|olivgrönbrun|orangeröd|orchidee|blektgyllenröd|blektgrön|blektturkos|papayakräm|persikopuff|plommon|ljusblå|lila|skärbrun|royalblå|sadelbrun|laxrosa|sandbrun|havsgrön|snäcka|sienna|silver|skifferblå|skiffergrå|snövit|vårgrön|stålblå|hudfärg|blågrön|tistel|tomat|turkos|violett|vete|vitrök|gulgrön|himmelblå|svart|blå|koraller|cyan|grå|grön|rosa|lavendel|lime|orange|röd|vit|gul)\\b",
      "name": "support.constant.color.w3c-standard-color-name.postcss"
    }
  ]
}