Change Opacity of Flutter Hints in Vscode

Viewed 32

Is there a way to change the opacity of the flutter hints in VsCode? (I'd like to make them slightly dimmer than actual comments)

enter image description here

1 Answers

This is known as dart.closingLabels. You can provide any color as you like.

Go to your VS Code setting and open settins.json.

enter image description here

Now provide color on

{  ....
    "workbench.colorCustomizations": {
       ...
        "dart.closingLabels": "#08ff94" // change this
    },
}

enter image description here

I am doing only for current project, to reflect on all project stay on User instead of WorkSpace

Workflow

enter image description here

Related