Add Kawaii theme

This commit is contained in:
Stephen Jianu 2024-10-10 11:21:25 -05:00
commit f3e2945051
3 changed files with 15 additions and 0 deletions

View file

@ -183,6 +183,17 @@ function Donsol () {
b_low: '#000000',
b_inv: '#FFFFFF'
}
this.kawaiiTheme = {
background: '#d09090',
f_high: '#000000',
f_med: '#fffafa',
f_low: '#6ea2a1',
f_inv: '#ff1493',
b_high: '#7fffd4',
b_med: '#6ADEDC',
b_low: '#b08686',
b_inv: '#7fffd4'
}
this.nightowlTheme = {
background: '#011627',
f_high: '#7fdbca',

View file

@ -197,6 +197,9 @@ function Player () {
if (theme_value.localeCompare('isotope') === 0) {
new_theme = donsol.isotopeTheme
}
if (theme_value.localeCompare('kawaii') === 0) {
new_theme = donsol.kawaiiTheme
}
if (theme_value.localeCompare('nightowl') === 0) {
new_theme = donsol.nightowlTheme
}

View file

@ -26,6 +26,7 @@ function Settings () {
this.theme_button.innerHTML += '<option value=\"gotham\">Gotham</option>'
this.theme_button.innerHTML += '<option value=\"haxe\">Haxe</option>'
this.theme_button.innerHTML += '<option value=\"isotope\">Isotope</option>'
this.theme_button.innerHTML += '<option value=\"kawaii\">Kawaii</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>'