zoukankan      html  css  js  c++  java
  • [VSCode] Adding Custom Syntax Highlighting to a Theme in VSCode

    VSCode Themes are a quick way to update the color scheme and syntax highlighting of your code, but you might find your favorite theme isn't quite perfect. VSCode supports customizations that allow you to fix that problem.

    In this lesson, I add settings to update the syntax highlighting for the Synthwave '84 theme in Markdown and MDX files. We do this by inspecting TM scopes and making custom rules in our settings.json.

    "editor.tokenColorCustomizations": {
      "[SynthWave '84]": {
        "textMateRules": [
          {
            "scope": "markup.inline.raw",
            "settings": {
              "foreground": "#72f1b8",
            }
          },
          {
            "scope": "markup.italic.markdown",
            "settings": {
              "foreground": "#36f9f6",
              "fontStyle": "italic"
            }
          },
        ]
      }
    }
  • 相关阅读:
    没有一个计时器控制在VB6计时器功能
    检测系统范围内的鼠标事件
    c# Com
    tcpdump
    dd
    dumpe/dumpe2fs/e2fsck
    fdisk
    mkswap/swapon/swapoff/free
    mkfs/mk2fs/fsck/e2fsck/tune2fs/blkid
    parted
  • 原文地址:https://www.cnblogs.com/Answer1215/p/11898425.html
Copyright © 2011-2022 走看看