Add Berry theme
This commit is contained in:
parent
0acd1bc039
commit
fa1cbec081
3 changed files with 15 additions and 0 deletions
|
|
@ -40,6 +40,17 @@ function Donsol () {
|
|||
b_low: '#111111',
|
||||
b_inv: '#affec7'
|
||||
}
|
||||
this.berryTheme = {
|
||||
background: '#9EB7FF',
|
||||
f_high: '#3e8281',
|
||||
f_med: '#FFFFFF',
|
||||
f_low: '#c5f0ec',
|
||||
f_inv: '#FFFFFF',
|
||||
b_high: '#1C0A16',
|
||||
b_med: '#499897',
|
||||
b_low: '#6ADEDC',
|
||||
b_inv: '#6ADEDC'
|
||||
}
|
||||
this.gameboyTheme = {
|
||||
background: '#9BBC0F',
|
||||
f_high: '#0F380F',
|
||||
|
|
|
|||
|
|
@ -158,6 +158,9 @@ function Player () {
|
|||
if (theme_value.localeCompare('battlestation') === 0) {
|
||||
new_theme = donsol.battlestationTheme
|
||||
}
|
||||
if (theme_value.localeCompare('berry') === 0) {
|
||||
new_theme = donsol.berryTheme
|
||||
}
|
||||
if (theme_value.localeCompare('gameboy') === 0) {
|
||||
new_theme = donsol.gameboyTheme
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ function Settings () {
|
|||
this.theme_button.innerHTML = '<option value=\"theme\">Theme (default)</option>'
|
||||
this.theme_button.innerHTML += '<option value=\"apollo\">Apollo</option>'
|
||||
this.theme_button.innerHTML += '<option value=\"battlestation\">Battlestation</option>'
|
||||
this.theme_button.innerHTML += '<option value=\"berry\">Berry</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>'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue