const global_sheets = []; export function add_css(sheets) { global_sheets.push(...sheets); document.adoptedStyleSheets = global_sheets; } export function css() { return global_sheets; }