vscode-theme-darcula icon indicating copy to clipboard operation
vscode-theme-darcula copied to clipboard

Components without color on vue 3.

Open Dav3rs opened this issue 4 years ago • 2 comments

The quotation marks doesn't have color neither.

VSC image

WebStorm image

Thanks, this is a nice theme to use in vscode.

Dav3rs avatar Jan 06 '21 20:01 Dav3rs

Yes, noticed this too. Sadly. Has anyone been able to fix it?

trawen avatar May 16 '22 16:05 trawen

Have a same problem with props color mismatch

the way how I fixed it added to setting.json that

"editor.tokenColorCustomizations": {
    "textMateRules": [
      {
        "scope": ["source.ts.embedded.html.vue", "source.vue"],
        "settings": {
          "foreground": "#9E7BB0"
        }
      }
    ]
  }

parameters for textMateRules scope I got by calling cmd+shift+p -> type "Developer: Inspect editor tokens and scopes" after that, when you hover with your mouse on the text, you get this popup window CleanShot 2022-09-23 at 14 10 15@2x and here you get these textmate scopes parameters

savconstantine avatar Sep 23 '22 07:09 savconstantine