Add Laundry theme

This commit is contained in:
Stephen Jianu 2024-10-13 20:48:55 -05:00
commit 70606949c7
3 changed files with 15 additions and 0 deletions

View file

@ -194,6 +194,17 @@ function Donsol () {
b_low: '#b08686',
b_inv: '#7fffd4'
}
this.laundryTheme = {
background: '#1b1a1e',
f_high: '#ffffff',
f_med: '#ff2851',
f_low: '#3e3d42',
f_inv: '#000000',
b_high: '#bdbcc1',
b_med: '#63606b',
b_low: '#151417',
b_inv: '#ff2851'
}
this.nightowlTheme = {
background: '#011627',
f_high: '#7fdbca',

View file

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

View file

@ -27,6 +27,7 @@ function Settings () {
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=\"laundry\">Laundry</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>'