diff options
Diffstat (limited to 'theme.js')
| -rw-r--r-- | theme.js | 9 |
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; +} |