Add Muzieca theme
This commit is contained in:
parent
50b3c7a550
commit
8a5c8040e1
3 changed files with 15 additions and 0 deletions
|
|
@ -249,6 +249,17 @@ function Donsol () {
|
||||||
b_low: '#333333',
|
b_low: '#333333',
|
||||||
b_inv: '#b9615a'
|
b_inv: '#b9615a'
|
||||||
}
|
}
|
||||||
|
this.muziecaTheme = {
|
||||||
|
background: '#090909',
|
||||||
|
f_high: '#818181',
|
||||||
|
f_med: '#707070',
|
||||||
|
f_low: '#595959',
|
||||||
|
f_inv: '#272727',
|
||||||
|
b_high: '#272727',
|
||||||
|
b_med: '#181818',
|
||||||
|
b_low: '#111111',
|
||||||
|
b_inv: '#818181'
|
||||||
|
}
|
||||||
this.nightowlTheme = {
|
this.nightowlTheme = {
|
||||||
background: '#011627',
|
background: '#011627',
|
||||||
f_high: '#7fdbca',
|
f_high: '#7fdbca',
|
||||||
|
|
|
||||||
|
|
@ -215,6 +215,9 @@ function Player () {
|
||||||
if (theme_value.localeCompare('murata') === 0) {
|
if (theme_value.localeCompare('murata') === 0) {
|
||||||
new_theme = donsol.murataTheme
|
new_theme = donsol.murataTheme
|
||||||
}
|
}
|
||||||
|
if (theme_value.localeCompare('muzieca') === 0) {
|
||||||
|
new_theme = donsol.muziecaTheme
|
||||||
|
}
|
||||||
if (theme_value.localeCompare('nightowl') === 0) {
|
if (theme_value.localeCompare('nightowl') === 0) {
|
||||||
new_theme = donsol.nightowlTheme
|
new_theme = donsol.nightowlTheme
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,7 @@ function Settings () {
|
||||||
this.theme_button.innerHTML += '<option value=\"mahou\">Mahou</option>'
|
this.theme_button.innerHTML += '<option value=\"mahou\">Mahou</option>'
|
||||||
this.theme_button.innerHTML += '<option value=\"marble\">Marble</option>'
|
this.theme_button.innerHTML += '<option value=\"marble\">Marble</option>'
|
||||||
this.theme_button.innerHTML += '<option value=\"murata\">Murata</option>'
|
this.theme_button.innerHTML += '<option value=\"murata\">Murata</option>'
|
||||||
|
this.theme_button.innerHTML += '<option value=\"muzieca\">Muzieca</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>'
|
||||||
this.theme_button.innerHTML += '<option value=\"tape\">Tape</option>'
|
this.theme_button.innerHTML += '<option value=\"tape\">Tape</option>'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue