Add Murata theme

This commit is contained in:
Stephen Jianu 2024-10-13 20:50:28 -05:00
commit 50b3c7a550
3 changed files with 15 additions and 0 deletions

View file

@ -238,6 +238,17 @@ function Donsol () {
b_low: '#CFD2CD', b_low: '#CFD2CD',
b_inv: '#676164' b_inv: '#676164'
} }
this.murataTheme = {
background: '#111111',
f_high: '#ffffff',
f_med: '#e8dacb',
f_low: '#5a6970',
f_inv: '#000000',
b_high: '#bbbbbb',
b_med: '#8498a2',
b_low: '#333333',
b_inv: '#b9615a'
}
this.nightowlTheme = { this.nightowlTheme = {
background: '#011627', background: '#011627',
f_high: '#7fdbca', f_high: '#7fdbca',

View file

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

View file

@ -31,6 +31,7 @@ function Settings () {
this.theme_button.innerHTML += '<option value=\"lotus\">Lotus</option>' this.theme_button.innerHTML += '<option value=\"lotus\">Lotus</option>'
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=\"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>'