Add Noir theme

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

View file

@ -282,6 +282,17 @@ function Donsol () {
b_low: '#464646',
b_inv: '#ff3300'
}
this.noirTheme = {
background: '#222222',
f_high: '#ffffff',
f_med: '#cccccc',
f_low: '#999999',
f_inv: '#ffffff',
b_high: '#888888',
b_med: '#666666',
b_low: '#444444',
b_inv: '#000000'
}
this.rogueliteTheme = {
background: '#352b31',
f_high: '#f5f5d4',

View file

@ -224,6 +224,9 @@ function Player () {
if (theme_value.localeCompare('ninetynine') === 0) {
new_theme = donsol.ninetynineTheme
}
if (theme_value.localeCompare('noir') === 0) {
new_theme = donsol.noirTheme
}
if (theme_value.localeCompare('roguelite') === 0) {
new_theme = donsol.rogueliteTheme
}

View file

@ -35,6 +35,7 @@ function Settings () {
this.theme_button.innerHTML += '<option value=\"muzieca\">Muzieca</option>'
this.theme_button.innerHTML += '<option value=\"nightowl\">Night Owl</option>'
this.theme_button.innerHTML += '<option value=\"ninetynine\">Ninety Nine</option>'
this.theme_button.innerHTML += '<option value=\"noir\">Noir</option>'
this.theme_button.innerHTML += '<option value=\"roguelite\">Roguelite</option>'
this.theme_button.innerHTML += '<option value=\"tape\">Tape</option>'
this.theme_button.addEventListener('mousedown', () => { donsol.player.change_theme(this.theme_button.value) })