Add Forest Lawn theme

This commit is contained in:
Stephen Jianu 2024-01-17 19:16:49 -06:00
commit 79c3d1df3a
3 changed files with 15 additions and 0 deletions

View file

@ -106,6 +106,17 @@ function Donsol () {
b_low: '#b0b2ff',
b_inv: '#ffffff'
}
this.forestlawnTheme = {
background: '#cd853f',
f_high: '#000000',
f_med: '#8b0000',
f_low: '#8b4513',
f_inv: '#00ced1',
b_high: '#90ee90',
b_med: '#32cd32',
b_low: '#9acd32',
b_inv: '#000000'
}
this.gameboyTheme = {
background: '#9BBC0F',
f_high: '#0F380F',

View file

@ -176,6 +176,9 @@ function Player () {
if (theme_value.localeCompare('commodore') === 0) {
new_theme = donsol.commodoreTheme
}
if (theme_value.localeCompare('forestlawn') === 0) {
new_theme = donsol.forestlawnTheme
}
if (theme_value.localeCompare('gameboy') === 0) {
new_theme = donsol.gameboyTheme
}

View file

@ -19,6 +19,7 @@ function Settings () {
this.theme_button.innerHTML += '<option value=\"coal\">Coal</option>'
this.theme_button.innerHTML += '<option value=\"cobalt\">Cobalt</option>'
this.theme_button.innerHTML += '<option value=\"commodore\">Commodore</option>'
this.theme_button.innerHTML += '<option value=\"forestlawn\">Forest Lawn</option>'
this.theme_button.innerHTML += '<option value=\"gameboy\">Game Boy</option>'
this.theme_button.innerHTML += '<option value=\"nightowl\">Night Owl</option>'
this.theme_button.innerHTML += '<option value=\"roguelite\">Roguelite</option>'