docs: add g80 to valid themes (#718)

This commit is contained in:
Eric Liu 2021-07-03 05:11:52 -07:00 committed by GitHub
commit 9763bf5cab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@
onMount(() => {
const currentTheme = window.location.search.split("?theme=")[1];
if (["white", "g10", "g90", "g100"].includes(currentTheme)) {
if (["white", "g10", "g80", "g90", "g100"].includes(currentTheme)) {
theme.set(currentTheme);
}
});