Add Muzieca theme

This commit is contained in:
Stephen Jianu 2024-10-13 20:51:56 -05:00
commit 8a5c8040e1
3 changed files with 15 additions and 0 deletions

View file

@ -249,6 +249,17 @@ function Donsol () {
b_low: '#333333',
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 = {
background: '#011627',
f_high: '#7fdbca',

View file

@ -215,6 +215,9 @@ function Player () {
if (theme_value.localeCompare('murata') === 0) {
new_theme = donsol.murataTheme
}
if (theme_value.localeCompare('muzieca') === 0) {
new_theme = donsol.muziecaTheme
}
if (theme_value.localeCompare('nightowl') === 0) {
new_theme = donsol.nightowlTheme
}

View file

@ -32,6 +32,7 @@ function Settings () {
this.theme_button.innerHTML += '<option value=\"mahou\">Mahou</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=\"muzieca\">Muzieca</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>'