Add Isotope theme

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

View file

@ -172,6 +172,17 @@ function Donsol () {
b_low: '#141419',
b_inv: '#FFFFFF'
}
this.isotopeTheme = {
background: '#000000',
f_high: '#FFFFFF',
f_med: '#33FF00',
f_low: '#FF0099',
f_inv: '#000000',
b_high: '#505050',
b_med: '#000000',
b_low: '#000000',
b_inv: '#FFFFFF'
}
this.nightowlTheme = {
background: '#011627',
f_high: '#7fdbca',

View file

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

View file

@ -25,6 +25,7 @@ function Settings () {
this.theme_button.innerHTML += '<option value=\"garden\">Garden</option>'
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=\"nightowl\">Night Owl</option>'
this.theme_button.innerHTML += '<option value=\"roguelite\">Roguelite</option>'
this.theme_button.innerHTML += '<option value=\"tape\">Tape</option>'