diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-11-10 18:41:23 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-11-10 18:41:23 +0100 |
| commit | bf1fef8933e090ec92dbb04c66f9c868044c242f (patch) | |
| tree | edb96ae970a131771f914c6de9ba7e188961d6a5 /theme.js | |
init commit
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; +} |