Add Teenage theme

This commit is contained in:
Stephen Jianu 2026-01-25 15:35:08 -06:00
commit f6f6d241f1
3 changed files with 15 additions and 0 deletions

View file

@ -275,6 +275,9 @@ function Player () {
if (theme_value.localeCompare('tape') === 0) {
new_theme = donsol.tapeTheme
}
if (theme_value.localeCompare('teenage') === 0) {
new_theme = donsol.teenageTheme
}
donsol.theme = new Theme(new_theme)
donsol.theme.load(new_theme)
donsol.theme.install(document.body)