sdras / night-owl-vscode-theme

🌌 NIGHT OWL: A VS Code dark theme for contrast for nighttime coding, 🦉 LIGHT OWL: a daytime light theme
https://aka.ms/nightowl
MIT License
2.82k stars 243 forks source link

I don't know if its a bug with html coloring tags #276

Closed leucioiustefan closed 4 years ago

leucioiustefan commented 4 years ago

Hello! I've recently noticed that html tag colors are more white than before, they used to be a light blue color. Html My eyes do not discern a difference between the tags color and the content between them. Is this what it should look like? Html tag color looked like this. tag color

leucioiustefan commented 4 years ago

Also I see a problem here. Problem It says it expects an object.

mattfwood commented 4 years ago

I've started seeing the same thing, i believe it happened when I updated VS code and it's due to a change in this theme. I'm still trying to figure out if there's a setting to revert this. I'll post back if i have any luck

mattfwood commented 4 years ago

Got it! So if you go to your settings.json and add this, it should revert the HTML tags to how they looked previously:

  "editor.tokenColorCustomizations":{
    "textMateRules":[
      {
        "scope":[
          "entity.name.tag",
          "meta.tag.other.html",
          "meta.tag.other.js",
          "meta.tag.other.tsx",
          "entity.name.tag.tsx",
          "entity.name.tag.js",
          "entity.name.tag",
          "meta.tag.js",
          "meta.tag.tsx",
          "meta.tag.html"
        ],
        "settings":{
          "foreground":"#7FDBCA"
        }
      }
    ]
  }

image

leucioiustefan commented 4 years ago

Thank you!