Add Lotus theme

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

View file

@ -205,6 +205,17 @@ function Donsol () {
b_low: '#151417',
b_inv: '#ff2851'
}
this.lotusTheme = {
background: '#161616',
f_high: '#f0c098',
f_med: '#999999',
f_low: '#444444',
f_inv: '#222222',
b_high: '#ffffff',
b_med: '#333333',
b_low: '#222222',
b_inv: '#f0c098'
}
this.nightowlTheme = {
background: '#011627',
f_high: '#7fdbca',

View file

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

View file

@ -28,6 +28,7 @@ function Settings () {
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=\"lotus\">Lotus</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>'