diff options
| author | Volpeon <git@volpeon.ink> | 2021-05-15 21:00:40 +0200 |
|---|---|---|
| committer | Volpeon <git@volpeon.ink> | 2021-05-15 21:00:40 +0200 |
| commit | 380fccc62982d7070acb61886c6adf357e8e4c5c (patch) | |
| tree | 728504d6c4c32f397eb10192a596ca0a45f4b9c1 /content | |
| parent | Fix overlapping box-shadows in card grid, load theme from localStorage (diff) | |
| download | volpeon.ink-380fccc62982d7070acb61886c6adf357e8e4c5c.tar.gz volpeon.ink-380fccc62982d7070acb61886c6adf357e8e4c5c.tar.bz2 volpeon.ink-380fccc62982d7070acb61886c6adf357e8e4c5c.zip | |
Separate script file
Diffstat (limited to 'content')
| -rw-r--r-- | content/script.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/content/script.js b/content/script.js new file mode 100644 index 0000000..649da9e --- /dev/null +++ b/content/script.js | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | const lightTheme = localStorage.getItem("light"); | ||
| 2 | |||
| 3 | if (lightTheme === "true") { | ||
| 4 | document.documentElement.classList.add("t-light"); | ||
| 5 | } | ||
