Hello world!

const sheet = new CSSStyleSheet();
sheet.insertRule(`
h1 {
background: pink;
}
`
);
document.adoptedStyleSheets = [ sheet ];