aboutsummaryrefslogtreecommitdiff
path: root/theme.js
blob: 975bacb124818e11e836108f3d8b2d6b03f0e699 (plain)
1
2
3
4
5
6
7
8
9
10
const global_sheets = [];

export function add_css(sheets) {
	global_sheets.push(...sheets);
	document.adoptedStyleSheets = global_sheets;
}

export function css() {
	return global_sheets;
}