Change flutter end of widget comment colour

577

Dart-code has a special key dart.closingLabels to customize themed color. Add the following snippet to settings.json :

  "workbench.colorCustomizations": {
    "[Default Dark+]": {
      "dart.closingLabels": "#335566"
    }
  }

My theme is Dark+, use another color for yuor theme with key "[Quiet Light]".

Share:
577
Arnold Rimmer
Author by

Arnold Rimmer

Updated on December 13, 2022

Comments

  • Arnold Rimmer
    Arnold Rimmer over 1 year

    I'm using VSC to create flutter apps and I find the end of widget comment too dominant (I use the quiet light theme). Is there any way to change the color of this comment to a lighter grey?

  • Robert Williams
    Robert Williams about 4 years
    can we add margin to it? i mean i want to indent these closing labels towards the end of screen so that code can look bit cleaner.