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

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

export function css() {
	return global_sheets;
}