Add Boysenberry theme

This commit is contained in:
Stephen Jianu 2024-01-17 19:02:09 -06:00
commit 069eb24365
3 changed files with 15 additions and 0 deletions

View file

@ -62,6 +62,17 @@ function Donsol () {
b_low: '#778899',
b_inv: '#6B8E23'
}
this.boysenberryTheme = {
background: '#171717',
f_high: '#efefef',
f_med: '#999999',
f_low: '#873260',
f_inv: '#919191',
b_high: '#373737',
b_med: '#272727',
b_low: '#000000',
b_inv: '#873260'
}
this.gameboyTheme = {
background: '#9BBC0F',
f_high: '#0F380F',

View file

@ -164,6 +164,9 @@ function Player () {
if (theme_value.localeCompare('bigtime') === 0) {
new_theme = donsol.bigtimeTheme
}
if (theme_value.localeCompare('boysenberry') === 0) {
new_theme = donsol.boysenberryTheme
}
if (theme_value.localeCompare('gameboy') === 0) {
new_theme = donsol.gameboyTheme
}

View file

@ -15,6 +15,7 @@ function Settings () {
this.theme_button.innerHTML += '<option value=\"battlestation\">Battlestation</option>'
this.theme_button.innerHTML += '<option value=\"berry\">Berry</option>'
this.theme_button.innerHTML += '<option value=\"bigtime\">Big Time</option>'
this.theme_button.innerHTML += '<option value=\"boysenberry\">Boysenberry</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>'