{
    "editor.mouseWheelZoom": true,
    "workbench.colorTheme": "Sublime Monokai",
    "workbench.colorCustomizations": {
        "[Sublime Monokai]": {
            "editor.background": "#101010"
        }
    },
    "editor.tokenColorCustomizations": {
        "[Sublime Monokai]": {
            "textMateRules": [
                {
                    "scope": "entity.name.tag",
                    "settings": {
                        "foreground": "#6c6ee4",
                        "fontStyle": "bold"
                    }
                },
                {
                    "scope": ["storage.type.function.js", "storage.type.js"],
                    "settings": {
                        "foreground": "#ee3366", 
                        "fontStyle": "italic bold" 
                    }
                },
                {
                    "scope": ["entity.name.function.js"],
                    "settings": {
                        "foreground": "#77db1a", 
                        "fontStyle": "" 
                    }
                },
                {
                    "scope": ["variable.other.object.js"],
                    "settings": {
                        "foreground": "#80abec", 
                        "fontStyle": "bold" 
                    }
                }
            ]
        }
    }
}