Add Garden theme
This commit is contained in:
parent
7771daf708
commit
914d7e73da
3 changed files with 15 additions and 0 deletions
|
|
@ -139,6 +139,17 @@ function Donsol () {
|
|||
b_low: '#9BBC0F',
|
||||
b_inv: '#0F380F'
|
||||
}
|
||||
this.gardenTheme = {
|
||||
background: '#28211c',
|
||||
f_high: '#ffefc9',
|
||||
f_med: '#9f9fa2',
|
||||
f_low: '#a3832c',
|
||||
f_inv: '#666666',
|
||||
b_high: '#aa0000',
|
||||
b_med: '#214c05',
|
||||
b_low: '#48413a',
|
||||
b_inv: '#4cb1cf'
|
||||
}
|
||||
this.nightowlTheme = {
|
||||
background: '#011627',
|
||||
f_high: '#7fdbca',
|
||||
|
|
|
|||
|
|
@ -185,6 +185,9 @@ function Player () {
|
|||
if (theme_value.localeCompare('gameboy') === 0) {
|
||||
new_theme = donsol.gameboyTheme
|
||||
}
|
||||
if (theme_value.localeCompare('garden') === 0) {
|
||||
new_theme = donsol.gardenTheme
|
||||
}
|
||||
if (theme_value.localeCompare('nightowl') === 0) {
|
||||
new_theme = donsol.nightowlTheme
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ function Settings () {
|
|||
this.theme_button.innerHTML += '<option value=\"forestlawn\">Forest Lawn</option>'
|
||||
this.theme_button.innerHTML += '<option value=\"frameio\">Frame.io</option>'
|
||||
this.theme_button.innerHTML += '<option value=\"gameboy\">Game Boy</option>'
|
||||
this.theme_button.innerHTML += '<option value=\"garden\">Garden</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=\"tape\">Tape</option>'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue