anotherglitchinthematrix / monochrome

Monochromatic theme collection, for those who seeks.
https://marketplace.visualstudio.com/items?itemName=anotherglitchinthematrix.monochrome
MIT License
160 stars 11 forks source link

Syntax Color Suggestion #6

Open rayonnunes opened 3 years ago

rayonnunes commented 3 years ago

I just loved use this theme in my vscode, however. the syntax color disturbs me a little bit so I was able to adjust the colors inside the settings.json like this:

"editor.tokenColorCustomizations": {
        "[Monochrome Dark Amplified]": {
            "comments": "#222222",
            "variables": "#FFFFFF",
            "strings": "#AAAAAA",
            "functions": "#C4C4C4",
            "keywords": "#6A6A6A",
            "numbers": "#D7D7D7",
            "types": "#C6C6C6",
            "textMateRules": [
                {
                    "scope": "keyword.operator",
                    "settings": {
                        "foreground": "#333333",
                        "fontStyle": "bold"
                    }
                }
            ]
        }
    }

there's not much sciente in those colors, just the ones that I liked most. I think that match very well with theme.

image