aboutsummaryrefslogtreecommitdiff
path: root/theme.js
diff options
context:
space:
mode:
Diffstat (limited to 'theme.js')
-rw-r--r--theme.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/theme.js b/theme.js
new file mode 100644
index 0000000..a04f660
--- /dev/null
+++ b/theme.js
@@ -0,0 +1,9 @@
+const global_sheets = [];
+
+export function add_css(sheets) {
+ global_sheets.push(...sheets);
+}
+
+export function css() {
+ return global_sheets;
+}