Trying to get syntax highlighting in css template strings in VS Code using extension. I've tried adding the following to settings.json but it doesn't seem to have any effect. I feel like I must be doing something incorrect... but then again, maybe not?
settings.json:
"lit-html.tags": [
"html",
"css"
]
for example, when using css template strings:
import { css } from 'lit-element/lit-element.js';
export const colors = css`
:host {
display: block;
color: blue;
}
:host([hidden]) {
display: none;
}
`;