Add Forest Lawn theme
This commit is contained in:
parent
b56b3597bb
commit
79c3d1df3a
3 changed files with 15 additions and 0 deletions
|
|
@ -106,6 +106,17 @@ function Donsol () {
|
||||||
b_low: '#b0b2ff',
|
b_low: '#b0b2ff',
|
||||||
b_inv: '#ffffff'
|
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 = {
|
this.gameboyTheme = {
|
||||||
background: '#9BBC0F',
|
background: '#9BBC0F',
|
||||||
f_high: '#0F380F',
|
f_high: '#0F380F',
|
||||||
|
|
|
||||||
|
|
@ -176,6 +176,9 @@ function Player () {
|
||||||
if (theme_value.localeCompare('commodore') === 0) {
|
if (theme_value.localeCompare('commodore') === 0) {
|
||||||
new_theme = donsol.commodoreTheme
|
new_theme = donsol.commodoreTheme
|
||||||
}
|
}
|
||||||
|
if (theme_value.localeCompare('forestlawn') === 0) {
|
||||||
|
new_theme = donsol.forestlawnTheme
|
||||||
|
}
|
||||||
if (theme_value.localeCompare('gameboy') === 0) {
|
if (theme_value.localeCompare('gameboy') === 0) {
|
||||||
new_theme = donsol.gameboyTheme
|
new_theme = donsol.gameboyTheme
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@ function Settings () {
|
||||||
this.theme_button.innerHTML += '<option value=\"coal\">Coal</option>'
|
this.theme_button.innerHTML += '<option value=\"coal\">Coal</option>'
|
||||||
this.theme_button.innerHTML += '<option value=\"cobalt\">Cobalt</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=\"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=\"gameboy\">Game Boy</option>'
|
||||||
this.theme_button.innerHTML += '<option value=\"nightowl\">Night Owl</option>'
|
this.theme_button.innerHTML += '<option value=\"nightowl\">Night Owl</option>'
|
||||||
this.theme_button.innerHTML += '<option value=\"roguelite\">Roguelite</option>'
|
this.theme_button.innerHTML += '<option value=\"roguelite\">Roguelite</option>'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue