Terminal colour changing on VSC for Mac

Viewed 51

I want to change the color of my terminal on VSC. However, after following the steps it shows me this specific error: End of file expected

Can anyone help?

screenshot of settings

1 Answers

Your settings.json is not a valid json it has missing curly braces it should be something like this.

{
    "dart.flutterSdkPath": "/Users/mahesh/Documents/flutter",

    "editor.tokenColorCustomizations": {
        "comments": "#507046",
    },
    "workbench.colorCustomizations": {
        "list.inactiveSelectionBackground": "#273d97",
        "list.inactiveSelectionForeground": "#ffffff",
        "list.activeSelectionBackground": "#474d64",
        "list.activeSelectionForeground": "#ffffff",
        "terminal.ansiBlack": "#ff0000",
        "terminal.ansiRed": "#ff0000",
        "terminal.foreground": "#273d97",
        "terminal.ansiGreen": "#00ff00",
    }
}
Related